-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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
{
"name": "fingerprinting-protection-debugger",
"description": "Fingerprinting Protection Debugger Firefox Addon",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "npm run build-popup && npm run build-ext",
"build-popup": "tsc -b && vite build --emptyOutDir",
"watch-popup": "NODE_ENV=development vite build --emptyOutDir --watch --mode development",
"watch-ext": "web-ext run --firefox=nightly --pref xpinstall.signatures.required=false --pref extensions.experiments.enabled=true --source-dir build --devtools",
"build-ext": "web-ext build",
"extlint": "web-ext lint --source-dir src",
"eslint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"webExt": {
"build": {
"overwriteDest": true,
"filename": "fingerprinting-protection-debugger.xpi"
},
"lint": {
"privileged": true
},
"sourceDir": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-extensions/fingerprinting-protection-debugger.git"
},
"bugs": {
"url": "https://github.com/mozilla-extensions/fingerprinting-protection-debugger/issues"
},
"docker-image": "node-lts-latest",
"dependencies": {
"immer": "^10.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-static-copy": "^1.0.6",
"web-ext": "^8.2.0"
},
"main": "vite.config.js",
"author": "Fatih Kilic",
"license": "MPL-2.0"
}