-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "craiyon",
"version": "2.0.0",
"description": "Craiyon (ex DALL-E Mini) API client library for Node.js",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"docs": "typedoc",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run build",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jozsefsallai/node-craiyon.git"
},
"keywords": [
"craiyon",
"image generation",
"api client"
],
"author": "József Sallai @jozsefsallai",
"license": "MIT",
"bugs": {
"url": "https://github.com/jozsefsallai/node-craiyon/issues"
},
"homepage": "https://github.com/jozsefsallai/node-craiyon#readme",
"devDependencies": {
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2"
}
}