-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "renraku",
"version": "0.4.2",
"description": "expose async functions as an api",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/index.js",
"exports": {
"./*": "./*",
".": {
"default": "./x/index.js",
"browser": "./x/index.js",
"node": "./x/server.js",
"deno": "./x/server.js"
}
},
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s clean && run-p importmap compile",
"clean": "rimraf x *.pem && mkdirp x",
"importmap": "importly --dev < package-lock.json > x/importmap.json",
"compile": "tsc",
"watch": "tsc -w",
"start": "run-p watch start-http",
"start-http": "http-server -p 8080",
"api-http": "node x/transports/http/examples/server.js",
"api-http-debug": "node inspect x/transports/http/examples/server.js",
"api-ws": "node x/transports/websocket/examples/server.js",
"api-ws-debug": "node inspect x/transports/websocket/examples/server.js",
"test": "cynic node x/tests.test.js",
"test-debug": "node inspect node_modules/cynic/dist/cli.js node x/tests.test.js"
},
"keywords": [
"rpc",
"json",
"jsonrpc",
"json-rpc",
"api",
"web-api",
"node-api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chase-moskal/renraku.git"
},
"bugs": {
"url": "https://github.com/chase-moskal/renraku/issues"
},
"homepage": "https://github.com/chase-moskal/renraku#readme",
"devDependencies": {
"@types/node": "^22.9.0",
"@types/ws": "^8.5.13",
"cynic": "^0.2.1",
"es-module-shims": "^1.10.1",
"http-server": "^14.1.1",
"importly": "^0.2.3",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"dependencies": {
"ws": "^8.18.0"
}
}