-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "bimg",
"version": "0.1.5",
"description": "A reverse-engineered Bing Image Creation API",
"main": "dist/index.js",
"type": "module",
"keywords": [
"bing",
"image-generation",
"api",
"reverse-engineered",
"DALL-E"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && NODE_ENV=production node ./dist/index.js",
"build": "rimraf ./dist && tsc",
"dev": "NODE_ENV=development nodemon --exec node --loader ts-node/esm ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nociza/Bimg.git"
},
"author": "nociza",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/nociza/Bimg/issues"
},
"homepage": "https://github.com/nociza/Bimg#readme",
"dependencies": {
"axios": "^1.3.4",
"config": "^3.3.9",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/debug": "^4.1.7",
"@types/node": "^18.15.11",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}