-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 KB
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
{
"name": "web-ext-template",
"version": "1.0.0",
"description": "",
"author": "apades",
"license": "ISC",
"homepage": "https://github.com/apad/web-ext-template",
"repository": {
"type": "git",
"url": "git+https://github.com/apad/web-ext-template.git"
},
"bugs": {
"url": "https://github.com/apad/web-ext-template/issues"
},
"keywords": [],
"engines": {
"pnpm": ">=9.0.0",
"node": ">=18.20.0"
},
"scripts": {
"dev": "tsup --config scripts/tsup.dev.ts",
"build": "cross-env NODE_ENV=production tsup --config scripts/tsup.build.ts ",
"release": "node ./scripts/release.mjs",
"archive": "node ./scripts/archive.mjs",
"postinstall": "simple-git-hooks",
"lint": "eslint --cache ."
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@apad/env-tools": "^1.0.6",
"@chialab/esbuild-plugin-meta-url": "^0.18.2",
"@eslint-react/eslint-plugin": "^1.12.1",
"@svgr/core": "^8.0.0",
"@svgr/plugin-jsx": "^8.0.1",
"@types/chrome": "^0.0.270",
"@types/fs-extra": "^11.0.4",
"@types/less": "^3.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.0",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"enquirer": "^2.4.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"eslint-plugin-react-refresh": "^0.4.11",
"fs-extra": "^11.2.0",
"less": "^4.2.0",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"postcss-load-config": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.10",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}