forked from vladmandic/automatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "@vladmandic/automatic",
"version": "dev",
"description": "SD.Next: Opinionated implementation of Stable Diffusion",
"author": "Vladimir Mandic <[email protected]>",
"bugs": {
"url": "https://github.com/vladmandic/automatic/issues"
},
"homepage": "https://github.com/vladmandic/automatic",
"license": "AGPLv3",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/automatic.git"
},
"scripts": {
"start": "python launch.py --debug --experimental",
"ruff": "ruff check",
"eslint": "eslint javascript/ extensions-builtin/sdnext-modernui/javascript/",
"pylint": "pylint *.py modules/ extensions-builtin/",
"lint": "npm run eslint; npm run ruff; npm run pylint"
},
"devDependencies": {
"esbuild": "^0.18.15"
},
"dependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-css": "^0.9.2",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^4.0.1"
}
}