mirror of
https://github.com/moloch--/sliver-script
synced 2026-06-08 16:08:26 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "sliver-script",
|
|
"version": "1.2.3",
|
|
"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": "^4.0.1",
|
|
"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": "^6.5.5"
|
|
}
|
|
}
|