forked from vpzomtrrfrt/stability-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.15 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
70
71
72
73
74
75
{
"name": "stability-client",
"version": "1.8.0",
"description": "A client for the Stability AI SDK",
"main": "./build/index.js",
"repository": "https://github.com/vpzomtrrfrt/stability-client",
"scripts": {
"start": "node ./build/index.js",
"prebuild": "yarn clean",
"build": "webpack",
"postbuild": "tsc -b .",
"prepare": "npm run build",
"clean": "rimraf ./build",
"format": "prettier --write .",
"lint": "eslint . --fix --ext .ts,.tsx --max-warnings 0"
},
"bin": {
"stability": "build/bin.js"
},
"keywords": [],
"contributors": [
"Jacob Kelley <jakie8@gmail.com>",
"Colin Reeder <colin@vpzom.click>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/google-protobuf": "^3.15.6",
"@types/mime": "^3.0.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.6.5",
"@types/uuid4": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"events": "^3.3.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.0",
"stability-sdk": "Stability-AI/api-interfaces#d098547f",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"webpack-shebang-plugin": "^1.1.8"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"commander": "^9.4.0",
"dotenv": "^16.0.2",
"google-protobuf": "^3.21.0",
"mime": "^3.0.0",
"mkdirp": "^1.0.4",
"read-pkg-up": "^7.0.1",
"typed-emitter": "^2.1.0",
"uuid4": "^2.0.3"
},
"files": [
"package.json",
"build/**/*"
]
}