-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
77
{
"name": "zk-passport-o1js-sdk",
"version": "0.2.0",
"description": "",
"license": "Apache-2.0",
"keywords": [
"zk-passport",
"zk-passport-o1js",
"o1js",
"mina-zkapp",
"mina-zk-app",
"mina-dapp",
"zkapp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/piconbello/zk-passport-o1js-sdk.git"
},
"author": "Piconbello (https://github.com/piconbello)",
"contributors": [
"Halit Özsoy <[email protected]> (https://github.com/corupta)"
],
"bugs": {
"url": "https://github.com/piconbello/zk-passport-o1js-sdk/issues"
},
"homepage": "https://github.com/piconbello/zk-passport-o1js-sdk#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "tsc",
"buildw": "tsc --watch",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"serve": "serve examples/browser",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"testw": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "npx eslint src/* --fix"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@jsenv/importmap-node-module": "^7.0.1",
"@types/jest": "^29.5.12",
"@types/msgpack-lite": "^0.1.11",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.7.0",
"eslint-plugin-o1js": "^0.4.0",
"jest": "^29.7.0",
"prettier": "^2.3.2",
"serve": "^14.2.4",
"ts-jest": "^29.2.4",
"typescript": "^5.4.5"
},
"peerDependencies": {
"o1js": "^1.*"
},
"engines": {
"node": ">=18.14.0"
},
"dependencies": {
"@noble/ciphers": "^1.1.1",
"@noble/curves": "^1.7.0",
"@noble/hashes": "^1.6.1",
"@thi.ng/base-n": "^2.7.25",
"msgpack-lite": "^0.1.26",
"notepack.io": "^3.0.1",
"qrcode": "^1.5.4",
"socket.io-client": "^4.8.1",
"zod": "^3.23.8"
}
}