forked from erictik/midjourney-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "midjourney",
"version": "4.0.0",
"description": "Node.js client for the unofficial MidJourney API.",
"main": "libs/index.js",
"types": "libs/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"files": [
"libs/*",
"src/*",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/erictik/midjourney-client.git"
},
"keywords": [
"midjourney-client",
"midjourney"
],
"engines": {
"node": ">=18"
},
"author": "Eric Yang <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/erictik/midjourney-client/issues"
},
"homepage": "https://github.com/erictik/midjourney-client#readme",
"devDependencies": {
"@types/async": "^3.2.20",
"@types/node": "^18.16.0",
"@types/ws": "^8.5.4",
"dotenv": "^16.0.3",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@huggingface/inference": "^2.5.0",
"async": "^3.2.4",
"isomorphic-ws": "^5.0.0",
"semiver": "^1.1.0",
"snowyflake": "^2.0.0",
"tslib": "^2.5.0",
"ws": "^8.13.0"
}
}