-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.67 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
{
"private": true,
"name": "sd-webui-better-prompt",
"version": "0.4.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "vite build",
"deploy": "cpy --flat ./dist/style.css ./ && cpy --flat ./dist/betterPrompt.js ./javascript/",
"build:dev": "pnpm run build && pnpm run deploy",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint ./client-src",
"format": "prettier --write ./client-src",
"format:check": "prettier --check ./client-src"
},
"keywords": [],
"author": "EideeHi",
"license": "MIT",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@tsconfig/svelte": "^5.0.0",
"@types/big.js": "^6.1.6",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.3.2",
"@types/sortablejs": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"commander": "^11.0.0",
"cpy-cli": "^4.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.31.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"node-fetch": "^3.3.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"svelte": "^4.0.0",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.6.0",
"typescript": "^5.0.4",
"vite": "^4.3.9"
},
"dependencies": {
"big.js": "^6.2.1",
"fuse.js": "^6.6.2",
"nanoid": "^4.0.2",
"sortablejs": "^1.15.0"
}
}