-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1013 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1013 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
29
30
31
32
33
34
{
"name": "noise",
"description": "Make sound response when events happen",
"private": true,
"dependencies": {
"just-throttle": "^4.2.0",
"nanoid": "^5.1.5"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"web-ext": "^8.8.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.105.0",
"webpack-cli": "^4.10.0",
"yargs": "^17.6.2",
"zip-webpack-plugin": "^4.0.1"
},
"scripts": {
"build": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"we:run": "node ./webext-run.js --source-dir build",
"we:lint": "web-ext lint --source-dir build",
"build:chrome": "cross-env BROWSER=chrome webpack",
"build:prod:chrome": "cross-env NODE_ENV=production BROWSER=chrome webpack"
},
"license": "MIT",
"packageManager": "yarn@4.9.2"
}