-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 790 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 790 Bytes
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
{
"name": "hashpass",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vp dev",
"build": "tsc --project tsconfig.json && vp build",
"test": "vp test",
"lint": "vp check",
"format": "vp fmt"
},
"dependencies": {
"base64-js": "^1.5.1",
"debounce": "^3.0.0",
"fast-sha256": "^1.3.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@types/chrome": "^0.2.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"typescript": "^6.0.3",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.2.4",
"vite-plus": "^0.2.4"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@^0.2.4"
}
}