forked from currenthandle/zupass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "@pcd/passport-interface",
"version": "0.7.1",
"license": "GPL-3.0-or-later",
"main": "./dist/index.js",
"types": "./src/index.ts",
"files": [
"./src/*",
"./dist/*",
"./README.md",
"./LICENSE"
],
"scripts": {
"lint": "eslint \"**/*.ts{,x}\"",
"test": "ts-mocha --config ../../.mocharc.js --exit test/**/*.spec.ts",
"build": "tsup src/index.ts",
"dev": "tsup src/index.ts --watch",
"typecheck": "yarn tsc --noEmit",
"prepublishOnly": "yarn build",
"clean": "rm -rf dist node_modules"
},
"dependencies": {
"@pcd/eddsa-ticket-pcd": "0.2.1",
"@pcd/emitter": "0.1.1",
"@pcd/passport-crypto": "0.7.1",
"@pcd/pcd-collection": "0.7.1",
"@pcd/pcd-types": "0.7.1",
"@pcd/rsa-ticket-pcd": "0.2.1",
"@pcd/semaphore-group-pcd": "0.7.1",
"@pcd/semaphore-identity-pcd": "0.7.1",
"@pcd/semaphore-signature-pcd": "0.7.1",
"@pcd/util": "0.1.1",
"@semaphore-protocol/group": "^3.14.0",
"@semaphore-protocol/identity": "^3.14.0",
"@semaphore-protocol/proof": "^3.14.0",
"js-sha256": "^0.9.0",
"react": "^18.2.0",
"url-join": "4.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@pcd/eslint-config-custom": "*",
"@pcd/tsconfig": "*",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.22",
"@types/url-join": "4.0.1",
"@types/uuid": "^9.0.0",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"mocha": "^10.2.0",
"mockdate": "^3.0.5",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}