-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
{
"private": true,
"scripts": {
"build:chrome": "rspack --env platform=chrome --mode=production",
"build:firefox": "rspack --env platform=firefox --mode=production",
"develop:chrome": "rspack --env platform=chrome --mode=development --watch",
"develop:firefox": "rspack --env platform=firefox --mode=development --watch",
"prepare": "husky && panda codegen",
"test": "tsc --noEmit && eslint --ext=tsx,ts ."
},
"dependencies": {
"@tabler/icons-react": "^3.31.0",
"preact": "^10.26.4",
"webextension-polyfill": "^0.12.0",
"wouter": "^3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@csstools/postcss-cascade-layers": "^5.0.1",
"@pandacss/dev": "^0.53.2",
"@rspack/cli": "^1.3.1",
"@rspack/core": "^1.3.1",
"@seldszar/yael": "^2.2.0",
"@swc/core": "^1.11.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/webextension-polyfill": "^0.10.7",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"graphql": "^16.10.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"webpack-merge": "^6.0.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
}
}