forked from 54ac/stream-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.43 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
{
"name": "stream-detector",
"author": {
"name": "dw5",
"email": "",
"url": "https://github.com/dw5"
},
"repository": "github:dw5/stream-detector",
"version": "1.0.0",
"type": "module",
"private": true,
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@babel/eslint-plugin": "^7.19.1",
"@parcel/babel-preset-env": "^2.8.3",
"@parcel/config-webextension": "^2.8.3",
"cpy-cli": "^5.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"parcel": "^2.8.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"stylelint": "^15.0.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0"
},
"scripts": {
"build": "npm run build-firefox && npm run build-chrome",
"build-firefox": "cpy -u 1 src/manifest-firefox.json . --rename=manifest.json && rimraf dist && parcel build src/manifest.json --config @parcel/config-webextension --no-source-maps && rimraf src/manifest.json",
"build-chrome": "cpy -u 1 src/manifest-chrome.json . --rename=manifest.json && rimraf dist-chrome && parcel build src/manifest.json --config @parcel/config-webextension --no-source-maps --dist-dir=dist-chrome && rimraf src/manifest.json",
"start": "cpy -u 1 src/manifest-firefox.json . --rename=manifest.json && rimraf dist && parcel watch src/manifest.json --host localhost --config @parcel/config-webextension && rimraf src/manifest.json"
},
"browserslist": "firefox 89"
}