-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 1.05 KB
/
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
28
29
30
{
"scripts": {
"webpack": "npx webpack",
"webpack-watch": "npx webpack --watch",
"debug": "cd ./dist && npx web-ext run -u 'about:debugging#/runtime/this-firefox'",
"clean": "rm -rf ./dist *.zip *.xpi",
"build-firefox": "npx webpack && cd ./dist && zip -r ../advanced-library-search.xpi icons js index.html manifest.json",
"build-chrome": "npx webpack && zip -r advanced-library-search.zip ./dist",
"compress": "zip -r source-code.zip ./src ./package.json ./tsconfig.json ./webpack.config.js ./README.md",
"test": "ts-node node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@types/chrome": "^0.0.202",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/rewire": "^2.5.28",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"jest": "^29.3.1",
"rewire": "^6.0.0",
"style-loader": "^3.2.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.5.0",
"typescript": "^4.9.3",
"web-ext": "^7.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
}
}