-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.84 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": "provendb-sdk-node",
"version": "0.1.0-alpha.3",
"description": "The ProvenDB SDK for Node.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && tsc && npm run build-anchor",
"build-anchor": "find src/anchor -type f -name 'anchor_*' -exec cp '{}' lib/anchor/ ';'",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest",
"docs-clean": "rm -rf docs",
"docs": "npm run docs-clean && typedoc src/index.ts",
"playground": "npm run build && node lib/merkle.playground.js",
"start": "npm run build && node lib/index.js",
"proto-gen-anchor": "protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --plugin=protoc-gen-grpc=./node_modules/.bin/grpc_tools_node_protoc_plugin --ts_out=grpc_js:./src --js_out=import_style=commonjs,binary:./src --grpc_out=grpc_js:./src -I $PROVENDB_APIS $PROVENDB_APIS/anchor/anchor.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SouthbankSoftware/provendb-sdk-node.git"
},
"author": "Southbank Software Pty Ltd",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/SouthbankSoftware/provendb-sdk-node/issues"
},
"homepage": "https://github.com/SouthbankSoftware/provendb-sdk-node#readme",
"devDependencies": {
"@types/google-protobuf": "^3.15.2",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.1",
"grpc-tools": "^1.10.0",
"grpc_tools_node_protoc_ts": "^5.2.2",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"typedoc": "^0.21.4",
"typescript": "^4.3.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.3.2",
"@grpc/proto-loader": "^0.5.6",
"@msgpack/msgpack": "^2.7.0",
"chainpoint-parse": "^3.3.1",
"google-protobuf": "^3.17.1"
}
}