-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 KB
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
{
"name": "@lazydynamics/rxinfer-client",
"version": "1.3.0",
"description": "A client to connect to RxInferServer",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/index.browser.js",
"scripts": {
"build": "tsc && npm run build:browser",
"build:browser": "esbuild src/index.ts --bundle --platform=browser --outfile=dist/index.browser.js --format=esm",
"generate": "openapi-ts",
"docs": "node scripts/wait-for-server.js && typedoc --out docs/build src",
"docs:serve": "npx serve docs",
"test": "node scripts/wait-for-server.js && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lazydynamics/RxInferClient.js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazydynamics/RxInferClient.js/issues"
},
"homepage": "https://github.com/lazydynamics/RxInferClient.js#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hey-api/client-fetch": "^0.10.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.66.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"esbuild": "^0.25.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typedoc": "^0.28.2",
"typescript": "^5.3.3"
}
}