-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
66 lines (66 loc) · 2.23 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "optmeowt",
"version": "5.0.1",
"description": "A privacy extension that allows users to exercise rights under GPC",
"main": "index.js",
"type": "module",
"scripts": {
"prestart": "rimraf dev",
"start": "concurrently -k npm:start:firefox npm:start:chrome",
"start:firefox": "webpack --watch --mode development --env firefox",
"start:chrome": "webpack --watch --mode development --env chrome",
"prebuild": "rimraf dist && mkdir dist && mkdir dist/packages",
"build": "npm run build:firefox && npm run build:chrome",
"build:firefox": "webpack --mode production --env firefox",
"build:chrome": "webpack --mode production --env chrome",
"postbuild:firefox": "cd dist/firefox && zip -rFSX ../packages/ff-optmeowt-$npm_package_version.zip * -x '*.git*' -x '*.DS_Store*' -x '*.txt*'",
"postbuild:chrome": "cd dist/chrome && zip -rFSX ../packages/chrome-optmeowt-$npm_package_version.zip * -x '*.git*' -x '*.DS_Store*' -x '*.txt*'",
"test": "mocha $(find test -name '*.js')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/privacy-tech-lab/gpc-optmeowt.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/privacy-tech-lab/gpc-optmeowt/issues"
},
"homepage": "https://github.com/privacy-tech-lab/gpc-optmeowt#readme",
"dependencies": {
"animate.css": "^4.1.1",
"darkmode-js": "^1.5.7",
"file-saver": "^2.0.5",
"idb": "^7.1.1",
"mocha": "^10.1.0",
"mustache": "^4.2.0",
"path": "^0.12.7",
"psl": "^1.8.0",
"puppeteer": "^22.12.1",
"rimraf": "^3.0.2",
"tippy.js": "^6.3.7",
"uikit": "3.6.9"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^6.2.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.7",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"prettier": "^2.3.2",
"string-replace-loader": "^3.0.3",
"style-loader": "^2.0.0",
"wait-on": "^7.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.9.0",
"workbox-webpack-plugin": "^6.5.3"
},
"resolutions": {
"ws": "^8.17.1"
}
}