-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "@docknetwork/crypto-wasm",
"version": "0.33.0",
"author": "Dock.io",
"license": "Apache-2.0",
"private": false,
"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": ">=18.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 && yarn 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": "14.1.0",
"@commitlint/config-conventional": "14.1.0",
"@stablelib/benchmark": "1.0.0",
"@types/jest": "^29.1.0",
"@types/node": "^16.18.34",
"@wasm-tool/wasm-pack-plugin": "1.6.0",
"conventional-changelog": "3.1.24",
"conventional-changelog-cli": "2.1.1",
"jest": "^29.1.2",
"prettier": "2.8.8",
"r1csfile": "^0.0.41",
"rollup": "2.49.0",
"text-encoding": "0.7.0",
"ts-jest": "^29.1.0",
"typescript": "5.1.3",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"buffer": "^6.0.3"
}
}