-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
{
"name": "@runware/sdk-js",
"version": "1.3.0",
"description": "The SDK is used to run image inference with the Runware API, powered by the RunWare inference platform. It can be used to generate imaged with text-to-image and image-to-image. It also allows the use of an existing gallery of models or selecting any model or LoRA from the CivitAI gallery. The API also supports upscaling, background removal, inpainting and outpainting, and a series of other ControlNet models.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "tsup",
"lint": "tsc",
"pkg": "npx pkgfiles",
"dev:test": "vitest --reporter verbose",
"test": "vitest run --reporter verbose",
"test:single": "vitest run --reporter verbose tests/Runware/upscale-gan.test.ts",
"debug": "tsx tests/script.ts",
"beta:tag": "npm publish --tag beta"
},
"keywords": [
"runware",
"sdk",
"ai"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/uuid": "^9.0.6",
"@types/ws": "^8.5.8",
"dotenv": "^16.4.5",
"mock-socket": "^9.3.1",
"tsup": "^8.3.5",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
},
"directories": {
"test": "tests"
}
}