-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "schoolbox-chrome-extension",
"version": "1.0.0",
"description": "A Chrome extension for SchoolBox built with TypeScript, React, and Bun.",
"main": "src/background/background.ts",
"scripts": {
"build": "webpack --config webpack.config.cjs",
"dev": "webpack --config webpack.config.cjs --watch",
"serve-dist": "bun serve dist",
"start": "bun run build && bun run serve-dist"
},
"keywords": [
"chrome",
"extension",
"typescript",
"bun"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/chrome": "^0.0.320",
"@types/html-to-text": "^9.0.4",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"fast-xml-parser": "^5.2.3",
"fuse.js": "^7.1.0",
"html-to-text": "^9.0.5",
"html-webpack-plugin": "^5.6.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"bun-types": "^0.1.0",
"prettier": "3.5.3",
"typescript": "^4.5.4"
}
}