-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.79 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@axlabs/neofs-sdk-ts-node",
"version": "0.0.4",
"description": "TypeScript SDK for NeoFS - Node.js Edition",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"require": "./dist/client/index.js",
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
}
},
"scripts": {
"build": "tsc && cp -r src/gen dist/ 2>/dev/null || true",
"generate": "sh scripts/ensure-protoc-gen-grpc-ts.sh && protoc --plugin=./bin/protoc-gen-grpc-ts --grpc-ts_out=target=nodejs:src/gen -I neofs-api neofs-api/accounting/service.proto neofs-api/accounting/types.proto neofs-api/acl/types.proto neofs-api/audit/types.proto neofs-api/container/service.proto neofs-api/container/types.proto neofs-api/link/types.proto neofs-api/lock/types.proto neofs-api/netmap/service.proto neofs-api/netmap/types.proto neofs-api/object/service.proto neofs-api/object/types.proto neofs-api/refs/types.proto neofs-api/reputation/service.proto neofs-api/reputation/types.proto neofs-api/session/service.proto neofs-api/session/types.proto neofs-api/status/types.proto neofs-api/storagegroup/types.proto neofs-api/subnet/types.proto neofs-api/tombstone/types.proto",
"generate:clean": "rm -rf src/gen/* && mkdir -p src/gen",
"generate:all": "sh scripts/ensure-protoc-gen-grpc-ts.sh && npm run generate:clean && npm run generate",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"publish:dry-run": "npm publish --dry-run",
"publish:public": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/AxLabs/neofs-sdk-ts-node"
},
"bugs": {
"url": "https://github.com/AxLabs/neofs-sdk-ts-node/issues"
},
"homepage": "https://github.com/AxLabs/neofs-sdk-ts-node#readme",
"keywords": [
"neofs",
"blockchain",
"storage",
"typescript",
"sdk",
"nodejs"
],
"author": "AxLabs Team",
"license": "Apache-2.0",
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/ripemd160": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.0",
"@grpc/proto-loader": "^0.8.0",
"@axlabs/neofs-sdk-ts-core": "^0.0.2",
"ripemd160": "^2.0.3"
},
"files": [
"dist"
]
}