-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1006 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1006 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
{
"name": "basic_bls_signing_frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run build:bindings && vite",
"build": "npm run build:bindings && npm run build:deps && tsc && vite build",
"build:bindings": "cd scripts && ./gen_bindings.sh",
"build:deps": "cd ../../../frontend/ic_vetkeys && npm run build",
"preview": "vite preview",
"lint": "eslint"
},
"peerDependencies": {
"@dfinity/vetkeys": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@rollup/plugin-typescript": "^12.1.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"tslib": "^2.8.1",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vite-plugin-environment": "^1.1.3"
},
"dependencies": {
"@dfinity/auth-client": "^2.4.1",
"@dfinity/principal": "^2.4.1"
}
}