-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "accelerant",
"displayName": "Accelerant",
"description": "A browser extension to improve your Nitro Type experience",
"version": "1.0.1",
"private": true,
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/gBasil/accelerant"
},
"scripts": {
"mv3:dev": "cross-env MANIFEST_VERSION=3 npm run dev",
"mv2:dev": "cross-env MANIFEST_VERSION=2 npm run dev",
"mv3:build": "cross-env MANIFEST_VERSION=3 npm run build",
"mv2:build": "cross-env MANIFEST_VERSION=2 npm run build",
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts",
"dev:scripts": "tsup --watch ./src",
"dev:menu": "vite build --watch",
"build": "npm run lint && cross-env NODE_ENV=production run-s clear build:prepare build:scripts build:menu",
"build:prepare": "esno scripts/prepare.ts",
"build:scripts": "tsup",
"build:menu": "vite build",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf extension.zip && jszip-cli add extension -o ./extension.zip",
"pack:crx": "crx pack extension -o ./extension.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./extension --filename extension.xpi --overwrite-dest",
"start:chromium": "web-ext run --source-dir ./extension --target=chromium",
"start:firefox": "web-ext run --source-dir ./extension --target=firefox-desktop",
"clear": "rimraf extension/dist extension/prepare.json extension.*",
"lint": "eslint 'src/**/*.{json,ts,js,tsx}'"
},
"devDependencies": {
"@ffflorian/jszip-cli": "^3.1.5",
"@iconify/json": "^1.1.408",
"@types/node": "^16.10.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/webextension-polyfill": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^5.2.0",
"@vitejs/plugin-react": "^1.0.6",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"esno": "^0.10.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass": "^1.52.2",
"tsup": "^6.1.0",
"typescript": "^4.4.3",
"unplugin-auto-import": "^0.8.7",
"vite": "^2.6.2",
"web-ext": "^6.8.0"
},
"dependencies": {
"@radix-ui/react-popover": "^0.1.6",
"@radix-ui/react-switch": "^0.1.5",
"classnames": "^2.3.1",
"deepmerge": "^4.2.2",
"delaunator": "^5.0.0",
"lucide-react": "^0.57.0",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"webext-bridge": "^5.0.0",
"webextension-polyfill": "^0.8.0"
}
}