-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "@semaphore-protocol/core",
"version": "4.7.0",
"description": "Core library for the essential Semaphore features.",
"type": "module",
"license": "MIT",
"main": "src/index.js",
"types": "src/types/index.d.ts",
"exports": {
".": {
"types": "./src/types/index.d.ts",
"require": "./src/index.cjs",
"default": "./src/index.js"
},
"./identity": {
"types": "./src/identity/types/index.d.ts",
"require": "./src/identity/index.cjs",
"default": "./src/identity/index.js"
},
"./group": {
"types": "./src/identity/types/index.d.ts",
"require": "./src/group/index.cjs",
"default": "./src/group/index.js"
},
"./proof": {
"types": "./src/identity/types/index.d.ts",
"require": "./src/proof/index.cjs",
"default": "./src/proof/index.js"
}
},
"files": [
"src/",
"LICENSE",
"README.md"
],
"repository": "https://github.com/semaphore-protocol/semaphore",
"homepage": "https://github.com/semaphore-protocol/semaphore/tree/main/packages/core",
"bugs": {
"url": "https://github.com/semaphore-protocol/semaphore.git/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@semaphore-protocol/group": "4.7.0",
"@semaphore-protocol/identity": "4.7.0",
"@semaphore-protocol/proof": "4.7.0"
}
}