Files
stacks-blockchain-api/ws-rpc-client/package.json
2020-08-13 13:44:01 -06:00

46 lines
1.4 KiB
JSON

{
"name": "@blockstack/ws-rpc-client",
"version": "0.1.0",
"access": "public",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "rimraf ./lib && npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "microbundle -i src/index.ts -o lib/index.umd.js --no-pkg-main -f umd --external none --globals none --tsconfig tsconfig.browser.json --name StacksApiWebSocketClient",
"open": "http-server -o 9222 -o test/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"postinstall": "npm run build"
},
"keywords": [],
"author": "@blockstack",
"license": "ISC",
"prettier": "@blockstack/prettier-config",
"files": [
"lib/**/*",
"src/**/*"
],
"dependencies": {
"@blockstack/stacks-blockchain-api-types": "^0.4.0",
"@types/ws": "^7.2.6",
"eventemitter3": "^4.0.4",
"jsonrpc-lite": "^2.1.0",
"strict-event-emitter-types": "^2.0.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@blockstack/prettier-config": "0.0.6",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"http-server": "^0.12.3",
"microbundle": "^0.12.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
}
}