-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "@pcd/ethereum-group-pcd",
"version": "0.9.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"
},
"./EthereumGroupPCD": {
"types": "./dist/types/src/EthereumGroupPCD.d.ts",
"import": "./dist/esm/src/EthereumGroupPCD.js",
"require": "./dist/cjs/src/EthereumGroupPCD.js"
}
},
"files": [
"./artifacts",
"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/pcd-types": "0.15.0",
"@pcd/semaphore-identity-pcd": "0.15.0",
"@pcd/semaphore-signature-pcd": "0.15.0",
"@pcd/util": "0.9.0",
"@personaelabs/spartan-ecdsa": "^2.1.4",
"@semaphore-protocol/identity": "^3.15.2",
"ethers": "^5.7.2",
"json-bigint": "^1.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@pcd/eslint-config-custom": "0.15.0",
"@pcd/tsconfig": "0.15.0",
"@types/json-bigint": "^1.0.1",
"@types/mocha": "^10.0.1",
"eslint": "^8.57.0",
"fix-esm-import-path": "^1.10.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}