-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
{
"version": "0.2.3",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/jsonrpc-ts-client.esm.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "dts watch --tsconfig ./tsconfig.prod.json",
"build": "dts build --tsconfig ./tsconfig.prod.json",
"test": "dts test",
"t:watch": "dts test --watch",
"t:debug": "DEBUG=jsonrpc-ts-client npm test",
"lint": "npm run tsc:check && eslint .",
"prepare": "npm run build",
"tsc:check": "tsc --noEmit",
"release": "bash scripts/release.sh"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"name": "jsonrpc-ts-client",
"description": "A modern isomorphic typescript client for JSON-RPC 2.0",
"author": "Seth Silesky",
"dependencies": {
"axios": "^0.24.0",
"debug": "^4.3.3"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.3",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"dts-cli": "^1.1.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"msw": "^0.36.3",
"prettier": "^2.5.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
}
}