-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "dev-go",
"displayName": "DevGo",
"version": "0.0.8",
"description": "A super unbeatable browser extension plugin for developers.",
"author": "荣顶",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,cjs,mjs,jsx,ts,tsx,css,scss,less,html,json,md}\"",
"format:check": "prettier --check \"**/*.{js,cjs,mjs,jsx,ts,tsx,css,scss,less,html,json,md}\"",
"postinstall": "wxt prepare",
"prettier": "prettier --write \"**/*.{js,cjs,mjs,jsx,ts,tsx,css,scss,less,html,json,md}\"",
"prepare": "husky install",
"release": "standard-version",
"cz": "cz"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,jsx,tsx,css,sass,scss,less,md,json,html}": [
"prettier --write"
],
"*.{ts,js,cjs,mjs,tsx,jsx}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"dependencies": {
"@paper-design/shaders": "0.0.77",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@ai-ins/vite": "^0.4.8",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/cz-commitlint": "^17.8.1",
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.0.0",
"@types/chrome": "^0.0.287",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@wxt-dev/auto-icons": "^1.1.1",
"@wxt-dev/module-react": "^1.2.2",
"commitizen": "^4.2.5",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^7.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "2.8.0",
"standard-version": "^9.5.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.61.0",
"wxt": "^0.20.6"
},
"homepage": "https://github.com/wangrongding",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"spawn-sync"
]
}
}