-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "@stable-canvas/sd-webui-a1111-pnginfo",
"version": "1.0.3",
"description": "",
"source": "src/main.ts",
"main": "dist/main.umd.js",
"module": "dist/main.module.mjs",
"unpkg": "dist/main.umd.js",
"types": "./dist/main.d.ts",
"exports": {
"types": "./dist/main.d.ts",
"require": "./dist/main.js",
"default": "./dist/main.modern.mjs"
},
"keywords": [
"stable diffusion"
],
"files": [
"dist/**.js*",
"dist/**.mjs*",
"dist/**/*.ts"
],
"scripts": {
"build-dts": "rollup -c rollup.dts.config.js",
"build-js": "microbundle --define process.env.NODE_ENV=production,PKG_VERSION=$npm_package_version",
"build": "pnpm build-js && pnpm build-dts",
"watch": "microbundle watch --define process.env.NODE_ENV=development,PKG_VERSION=$npm_package_version --compress false",
"dev": "pnpm watch",
"start": "pnpm build",
"prepack": "rm -rf dist && pnpm run build",
"test": "jest"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StableCanvas/sd-webui-a1111-pnginfo.git"
},
"author": "zhzluke96",
"bugs": {
"url": "https://github.com/StableCanvas/sd-webui-a1111-pnginfo/issues"
},
"homepage": "https://github.com/StableCanvas/sd-webui-a1111-pnginfo#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"dedent": "^1.5.3",
"exifr": "^7.1.3",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}