-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 1020 Bytes
/
package.json
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
{
"name": "@dfinity/certificate-verification",
"description": "Client side certificate verification for the Internet Computer",
"version": "3.0.0",
"author": "DFINITY Stiftung",
"license": "Apache-2.0",
"repository": "github:dfinity/response-verification",
"bugs": "https://github.com/dfinity/response-verification/issues",
"keywords": [
"internet-computer",
"icp",
"dfinity",
"certificate",
"verification"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/certificate-verification.umd.cjs",
"module": "dist/certificate-verification.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build && tsc -p ./tsconfig.types.json",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"@dfinity/agent": "^1.0.1",
"@dfinity/candid": "^1.0.1",
"@dfinity/principal": "^1.0.1"
},
"devDependencies": {
"@dfinity/certification-testing": "workspace:*"
}
}