-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "@pcd/semaphore-signature-pcd",
"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"
},
"./SemaphoreSignaturePCD": {
"types": "./dist/types/src/SemaphoreSignaturePCD.d.ts",
"import": "./dist/esm/src/SemaphoreSignaturePCD.js",
"require": "./dist/cjs/src/SemaphoreSignaturePCD.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/util": "0.9.0",
"@semaphore-protocol/group": "^3.15.2",
"@semaphore-protocol/identity": "^3.15.2",
"@semaphore-protocol/proof": "npm:@pcd/semaphore-proof-v3@^3.15.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",
"@types/uuid": "^9.0.0",
"chai": "^4.3.7",
"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"
}
}