-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "midjourney",
"version": "2.3.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",
"start": "npx tsx index.ts",
"build": "tsc",
"postinstall": "npm run build",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"files": [
"libs/*",
"src/*",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/erictik/midjourney-api.git"
},
"keywords": [
"midjourney-api",
"midjourney"
],
"engines": {
"node": ">=18"
},
"author": "Eric Yang <yanghao@10d.xin>",
"license": "ISC",
"bugs": {
"url": "https://github.com/erictik/midjourney-api/issues"
},
"homepage": "https://github.com/erictik/midjourney-api#readme",
"devDependencies": {
"@types/multer": "^1.4.7",
"@types/node": "^18.16.16",
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.5.4",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@firebase/auth": "^0.23.2",
"@huggingface/inference": "^2.5.0",
"@types/express": "^4.17.17",
"@types/mime": "^3.0.1",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"firebase": "^9.22.1",
"firebase-admin": "^11.9.0",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"http-delayed-response": "^0.0.4",
"https": "^1.0.0",
"isomorphic-ws": "^5.0.0",
"jsonwebtoken": "^9.0.0",
"midjourney": "github:iamkunal9/midjourney-api",
"mime": "^3.0.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.22",
"p-queue": "^6.6.2",
"path": "^0.12.7",
"react": "^18.2.0",
"react-router-dom": "^6.11.2",
"request": "^2.88.2",
"snowyflake": "^2.0.0",
"socket.io": "^4.6.2",
"stripe": "^12.8.0",
"throat": "^6.0.2",
"tslib": "^2.5.0",
"url": "^0.11.1",
"uuid": "^9.0.0",
"websocket": "^1.0.34",
"ws": "^8.13.0"
}
}