-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.9 KB
/
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
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
{
"name": "zpass-sdk",
"version": "0.0.9",
"description": "zPass is a fast, secure, and privacy-preserving digital identity solution",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsup src/index.ts --format esm,cjs --dts --outDir dist",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run lint",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run --reporter verbose",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint src"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"globals": "^15.12.0",
"tsup": "^8.3.5",
"typescript": "^5.0.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^1.2.0",
"wasm-pack": "^0.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AleoNet/zPass-SDK-new.git"
},
"keywords": [
"digital identity",
"crypto",
"blockchain",
"zero knowledge",
"privacy",
"zpass",
"aleo",
"zk"
],
"author": "Aleo Network Foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AleoNet/zPass-SDK-new/issues"
},
"homepage": "https://github.com/AleoNet/zPass-SDK-new#readme",
"dependencies": {
"@provablehq/sdk": "^0.7.1",
"comlink": "^4.4.2",
"core-js": "^3.38.1",
"zpass-credential-signer": "0.0.2"
},
"jest": {
"verbose": true,
"silent": false
}
}