mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-01-08 22:28:08 -05:00
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"name": "@semaphore-protocol/core",
|
|
"version": "4.14.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.14.0",
|
|
"@semaphore-protocol/identity": "4.14.0",
|
|
"@semaphore-protocol/proof": "4.14.0"
|
|
}
|
|
}
|