58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "@statechannels/nitro-rpc-client",
|
|
"version": "0.0.9",
|
|
"description": "Typescript RPC client for go-nitro",
|
|
"repository": "https://github.com/statechannels/nitro-rpc-client.git",
|
|
"license": "MIT",
|
|
"author": "Alex Gap",
|
|
"main": "dist/src/index.js",
|
|
"bin": "src/cli.ts",
|
|
"scripts": {
|
|
"build": "tsc -b .",
|
|
"lint": "yarn lint:eslint && yarn lint:misc --check",
|
|
"lint:eslint": "eslint . --cache --ext js,ts --max-warnings 0",
|
|
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
|
|
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
|
|
"prepack": "yarn build",
|
|
"start": "npx ts-node src/cli.ts",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@statechannels/exit-format": "^0.2.0",
|
|
"ajv": "^8.12.0",
|
|
"axios": "^1.3.6",
|
|
"eventemitter3": "^5.0.0",
|
|
"json-rpc-2.0": "^1.5.1",
|
|
"nats": "^2.13.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.2",
|
|
"websocket": "^1.0.34"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ajv": "^1.0.0",
|
|
"@types/jest": "29.5.0",
|
|
"@types/node": "^18.15.11",
|
|
"@types/websocket": "^1.0.5",
|
|
"@types/yargs": "^17.0.24",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.0",
|
|
"@typescript-eslint/parser": "^5.59.0",
|
|
"eslint": "^7.17.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jest": "^26.8.2",
|
|
"eslint-plugin-jsdoc": "^39.2.9",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"eslint-plugin-storybook": "^0.6.11",
|
|
"jest": "29.5.0",
|
|
"prettier": "^2.2.1",
|
|
"prettier-plugin-packagejson": "^2.2.18",
|
|
"ts-jest": "29.1.0",
|
|
"typescript": "^4.6.3",
|
|
"yargs": "^17.7.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.5.0"
|
|
}
|
|
}
|