-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 921 Bytes
/
package.json
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
{
"name": "tab-controller",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && pnpm build:popup && pnpm cp:ext && pnpm build:background",
"cp:ext": "cp manifest.json dist/ && cp -R images dist/",
"build:popup": "pnpm build:popup:js && cp popup/index.html dist/popup/ && cp popup/index.css dist/popup/index.css",
"build:popup:js": "esbuild popup/index.tsx --outfile=dist/popup/index.js --bundle --minify",
"build:background": "esbuild background.ts --outfile=dist/background.js --bundle --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"esbuild": "^0.15.12"
},
"dependencies": {
"@types/chrome": "^0.0.200",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}