-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "my-fingerprint",
"private": true,
"version": "0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"dev:firefox": "vite build -- --firefox --no-minify",
"build:firefox": "tsc && vite build -- --firefox",
"build:all": "npm run build && npm run build:firefox"
},
"dependencies": {
"antd": "^5.18.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.2",
"react-markdown": "^9.0.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.2.0",
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/chrome": "^0.0.268",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.14.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.9.2",
"vite": "^5.4.20"
}
}