-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "MPMChromeExtension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:nopopup": "NODE_ENV=production webpack --config webpack.config.js",
"build": "npm run build:popup && npm run build:nopopup",
"build:popup": "INLINE_RUNTIME_CHUNK=false npm run build --prefix src/popup && cd src/popup/build && cpy * /static/* ../../../dist/popup --parents",
"clean": "rm -rf dist && cpy manifest.json dist && cpy src/assets/* dist/assets",
"prebuild": "npm run clean",
"prewatch": "npm run clean",
"watch:contentscript-background": "NODE_ENV=development webpack --config webpack.config.js -w",
"watch:popup": "npm run watch:build --prefix src/popup",
"watch": "npm-run-all watch:*",
"zip": "rm extension.zip; cd dist && bestzip ../extension.zip *"
},
"keywords": [],
"author": "Benjamin Häublein",
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.122",
"@types/node": "^14.0.27",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^2.1.6",
"cpy-cli": "^3.1.1",
"cra-build-watch": "^3.2.0",
"css-loader": "^4.2.0",
"html-loader": "^1.2.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^9.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"webpack": "4.42.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"rxjs": "^6.6.2"
}
}