-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "sliver-script",
"version": "1.2.5",
"description": "TypeScript/JavaScript Sliver client library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && mkdir -p ./lib && cp -r ./src/pb ./lib/pb && tsc",
"pb": "./protobuf.sh",
"docs": "typedoc --out ./docs/ ./src",
"test": "jest --config jestconfig.json"
},
"prepublishOnly": "npm test && npm run build",
"files": [
"lib/**/*"
],
"keywords": [],
"author": "moloch",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/moloch--/sliver-script"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/long": "^5.0.0",
"grpc-tools": "^1.11.2",
"jest": "^27.4.7",
"marked": "^4.0.10",
"ts-jest": "^27.1.3",
"ts-protoc-gen": "^0.12.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5",
"ws": ">=7.4.6"
},
"dependencies": {
"@grpc/grpc-js": "^1.5.5",
"@improbable-eng/grpc-web": "^0.15.0",
"@types/google-protobuf": "^3.15.5",
"google-protobuf": "^3.19.4",
"protobufjs": "^6.11.2",
"protoc-gen-ts": "^0.8.2",
"rxjs": "^7.5.6"
}
}