-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "@atek-cloud/node-rpc",
"version": "4.2.0",
"description": "Atek RPC client/server for node.js",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "ava -s test/*.ts"
},
"author": "Paul Frazee <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.6.2",
"@types/node-fetch": "^2.5.12",
"ava": "^3.15.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"repository": "github:atek-cloud/node-rpc",
"bugs": {
"url": "https://github.com/atek-cloud/node-rpc/issues"
},
"homepage": "https://github.com/atek-cloud/node-rpc#readme",
"dependencies": {
"ajv": "^8.6.2",
"ajv-formats": "^2.1.1",
"jsonrpc-lite": "^2.2.0",
"node-fetch": "^2.6.1",
"websocket-stream": "^5.5.2"
}
}