-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "@orbito/render-client",
"version": "0.0.4",
"description": "HTTP Client to use with Orbito Render service",
"author": {
"name": "bemit",
"url": "https://bemit.codes"
},
"contributors": [
{
"name": "Michael Becker",
"url": "https://i-am-digital.eu"
}
],
"engines": {
"node": ">=14"
},
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/orbiter-cloud/render-service.git",
"directory": "packages/render-client"
},
"exports": {
"./RenderClient": "./build/RenderClient.js"
},
"devDependencies": {
"superagent": "^8.0.0",
"@types/superagent": "^4.1.15"
},
"dependencies": {
"superagent": "^8.0.0",
"@types/superagent": "^4.1.15"
},
"scripts": {
"dtsgen": "tsc -d --emitDeclarationOnly --pretty && merge-dirs build/dts build && rm -rf build/dts && rm -rf build/**/*.test.*"
},
"publishConfig": {
"access": "public"
}
}