This repository was archived by the owner on Jan 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.71 KB
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
{
"name": "@semaphore-research/merkle-tree",
"version": "0.3.0",
"description": "Incremental Merkle tree implementation in TypeScript.",
"license": "MIT",
"main": "dist/index.node.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js"
},
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": "https://github.com/semaphore-protocol/research",
"homepage": "https://github.com/semaphore-protocol/research",
"bugs": {
"url": "https://github.com/semaphore-protocol/research.git/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build",
"test": "jest",
"prettier": "prettier -c .",
"prettier:write": "prettier -w .",
"benchmarks": "rimraf benchmarks/results && ts-node benchmarks/index.ts"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/node": "^17.0.9",
"@types/rimraf": "^3.0.2",
"@zk-kit/incremental-merkle-tree": "^1.1.0",
"benny": "^3.7.1",
"jest": "^29.6.2",
"jest-config": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^3.27.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^5.1.6"
},
"dependencies": {
"poseidon-lite": "^0.2.0"
}
}