-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "@pcd/semaphore-identity-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"
},
"./SemaphoreIdentityPCD": {
"types": "./dist/types/src/SemaphoreIdentityPCD.d.ts",
"import": "./dist/esm/src/SemaphoreIdentityPCD.js",
"require": "./dist/cjs/src/SemaphoreIdentityPCD.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/pcd-types": "0.15.0",
"@pcd/pod": "0.5.0",
"@pcd/semaphore-identity-v3-wrapper": "0.1.0",
"@pcd/util": "0.9.0",
"@semaphore-protocol/core": "^4.5.0",
"@types/json-bigint": "^1.0.3",
"@zk-kit/eddsa-poseidon": "^1.1.0",
"@zk-kit/utils": "^1.2.1",
"js-sha256": "^0.11.0",
"json-bigint": "^1.0.0",
"poseidon-lite": "^0.3.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"
}
}