-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.96 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.96 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": "@docknetwork/crypto-wasm",
"version": "0.35.0",
"author": "Dock.io",
"license": "Apache-2.0",
"description": "An implementation of BBS, BBS+ signatures, PS signatures, bilinear map accumulators, verifiable encryption, range proof and composite proof using rust compiled to wasm. This project started as fork of @mattrglobal/bbs-signatures",
"homepage": "https://github.com/docknetwork/crypto-wasm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/docknetwork/crypto-wasm",
"browser": {
"index.js": "lib/index.web.js"
},
"files": [
"lib/*"
],
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"install:deps": "./scripts/install-dependencies.sh",
"uninstall": "rm -rf node_modules && yarn clean",
"clean": "rm -rf target && rm -rf lib",
"build": "./scripts/build-package.sh DEBUG",
"build:release": "./scripts/build-package.sh RELEASE",
"build:profiling": "./scripts/build-package.sh PROFILING",
"test": "yarn test:wasm",
"test:browser": "./scripts/test-browser.sh",
"test:wasm": "yarn jest",
"benchmark:wasm": "ts-node ./bench/index.ts",
"publish:release": "yarn build:release && npm publish",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"version:release": "yarn version --minor --message \"chore(release): publish\""
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@stablelib/benchmark": "^2.0.0",
"@types/jest": "29",
"@types/node": "^24.3.0",
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"conventional-changelog": "^7.1.1",
"conventional-changelog-cli": "^5.0.0",
"jest": "29",
"prettier": "^3.6.2",
"r1csfile": "^0.0.48",
"rollup": "^4.47.0",
"ts-jest": "29",
"typescript": "^5.9.2",
"webpack-dev-server": "^5.2.2"
},
"packageManager": "yarn@4.10.3"
}