-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
105 lines (105 loc) · 3.24 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@pcd/passport-interface",
"version": "0.15.0",
"license": "GPL-3.0-or-later",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
},
"./Credential": {
"types": "./dist/types/src/Credential.d.ts",
"import": "./dist/esm/src/Credential.js",
"require": "./dist/cjs/src/Credential.js"
},
"./FeedHost": {
"types": "./dist/types/src/FeedHost.d.ts",
"import": "./dist/esm/src/FeedHost.js",
"require": "./dist/cjs/src/FeedHost.js"
},
"./PassportPopup/core": {
"types": "./dist/types/src/PassportPopup/core.d.ts",
"import": "./dist/esm/src/PassportPopup/core.js",
"require": "./dist/cjs/src/PassportPopup/core.js"
},
"./PassportPopup/react": {
"types": "./dist/types/src/PassportPopup/react.d.ts",
"import": "./dist/esm/src/PassportPopup/react.js",
"require": "./dist/cjs/src/PassportPopup/react.js"
},
"./PassportInterface": {
"types": "./dist/types/src/PassportInterface.d.ts",
"import": "./dist/esm/src/PassportInterface.js",
"require": "./dist/cjs/src/PassportInterface.js"
},
"./RequestTypes": {
"types": "./dist/types/src/RequestTypes.d.ts",
"import": "./dist/esm/src/RequestTypes.js",
"require": "./dist/cjs/src/RequestTypes.js"
}
},
"files": [
"dist",
"./README.md",
"./LICENSE"
],
"scripts": {
"lint": "eslint \"**/*.ts{,x}\"",
"build": "tsc -b tsconfig.cjs.json tsconfig.esm.json",
"postbuild": "fix-esm-import-path ./dist/esm/src",
"typecheck": "yarn tsc --noEmit",
"prepublishOnly": "yarn clean && yarn build",
"test": "ts-mocha --type-check --config ../../../.mocharc.js --exit 'test/**/*.spec.ts'",
"clean": "rm -rf dist node_modules *.tsbuildinfo"
},
"dependencies": {
"@pcd/eddsa-frog-pcd": "0.7.0",
"@pcd/eddsa-pcd": "^0.10.0",
"@pcd/eddsa-ticket-pcd": "0.10.0",
"@pcd/email-pcd": "^0.10.0",
"@pcd/emitter": "0.9.0",
"@pcd/passport-crypto": "0.15.0",
"@pcd/pcd-collection": "0.15.0",
"@pcd/pcd-types": "0.15.0",
"@pcd/pod": "0.5.0",
"@pcd/pod-ticket-pcd": "0.5.0",
"@pcd/semaphore-group-pcd": "0.15.0",
"@pcd/semaphore-identity-pcd": "0.15.0",
"@pcd/pod-pcd": "0.5.0",
"@pcd/semaphore-identity-v3-wrapper": "0.1.0",
"@pcd/semaphore-signature-pcd": "0.15.0",
"@pcd/util": "0.9.0",
"fast-json-stable-stringify": "^2.1.0",
"js-sha256": "^0.10.1",
"lodash": "^4.17.21",
"url-join": "4.0.1",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@pcd/eslint-config-custom": "0.15.0",
"@pcd/tsconfig": "0.15.0",
"@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": "^8.57.0",
"fix-esm-import-path": "^1.10.0",
"mocha": "^10.2.0",
"mockdate": "^3.0.5",
"ts-mocha": "^10.0.0",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}