-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 793 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 793 Bytes
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
{
"name": "github-extensions",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "npx webpack --config webpack.config.js --mode development --watch",
"build-dev": "npx webpack --config webpack.config.js --mode development",
"build-prod": "npx webpack --config webpack.config.js --mode production",
"test": "jest"
},
"author": "driouecheMed",
"license": "Apache-2.0",
"devDependencies": {
"@types/chrome": "^0.0.244",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"compression-webpack-plugin": "^10.0.0",
"terser-webpack-plugin": "^5.3.9"
}
}