forked from proofcarryingdata/zupass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "@pcd/ethereum-group-pcd",
"version": "0.2.0",
"license": "GPL-3.0-or-later",
"main": "./dist/node/index.js",
"types": "./src/index.ts",
"files": [
"./artifacts/*",
"./src/*",
"./dist/*",
"./README.md",
"./LICENSE"
],
"exports": {
".": {
"node": {
"default": "./dist/node/index.js"
},
"browser": {
"default": "./dist/browser/index.js"
}
}
},
"scripts": {
"lint": "eslint \"**/*.ts{,x}\"",
"build": "tsup --platform=browser src/index.ts --out-dir ./dist/browser && tsup --platform=node src/index.ts --out-dir ./dist/node",
"dev": "concurrently \"yarn dev:browser\" \"yarn dev:node\"",
"dev:browser": "tsup --platform=browser src/index.ts --out-dir ./dist/browser --watch",
"dev:node": "tsup --platform=node src/index.ts --out-dir ./dist/node --watch",
"typecheck": "yarn tsc --noEmit",
"test": "ts-mocha --exit test/**/*.spec.ts",
"prepublishOnly": "yarn build",
"clean": "rm -rf dist node_modules"
},
"dependencies": {
"@pcd/passport-ui": "0.8.0",
"@pcd/pcd-types": "0.8.0",
"@pcd/semaphore-identity-pcd": "0.8.0",
"@pcd/semaphore-signature-pcd": "0.8.0",
"@pcd/util": "0.2.0",
"@personaelabs/spartan-ecdsa": "^2.1.4",
"@semaphore-protocol/identity": "^3.14.0",
"ethers": "^5.7.2",
"json-bigint": "^1.0.0",
"react": "^18.2.0",
"styled-components": "^5.3.9",
"uuid": "^9.0.0"
},
"devDependencies": {
"@pcd/eslint-config-custom": "0.8.0",
"@pcd/tsconfig": "0.8.0",
"@types/json-bigint": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/styled-components": "^5.1.26",
"concurrently": "^8.2.0",
"eslint": "^7.32.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}