-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "@stable-canvas/sd-webui-a1111-prompt-parser",
"version": "1.2.4",
"description": "",
"source": "src/main.ts",
"main": "dist/main.js",
"module": "dist/main.mjs",
"unpkg": "dist/main.global.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js"
},
"./dist/main.global.js": "./dist/main.global.js"
},
"keywords": [
"stable diffusion",
"webui",
"diffusion",
"ai",
"ai art"
],
"files": [
"dist/**.js*",
"dist/**.mjs*",
"dist/**.ts"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"dev": "pnpm watch",
"start": "pnpm build",
"prepack": "rm -rf dist && pnpm run build",
"test": "jest",
"build-lark": "lark-js prompt_grammar.lark | sed 's/.*const util.*//' | sed 's/.*\"strict\": false.*//' | sed 's/.*\"ordered_sets\": true.*//' > src/prompt_parser.js"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StableCanvas/sd-webui-a1111-client.git"
},
"author": "zhzluke96",
"bugs": {
"url": "https://github.com/StableCanvas/sd-webui-a1111-client/issues"
},
"homepage": "https://github.com/StableCanvas/sd-webui-a1111-client#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.4.2",
"jest": "^29.7.0",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"tsup": "^8.0.1",
"typescript": "^5.1.6"
}
}