-
Notifications
You must be signed in to change notification settings - Fork 313
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 KB
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
{
"private": true,
"name": "image-downloader",
"version": "4.5.0",
"license": "GPLv3",
"scripts": {
"dev": "bun start",
"web": "bun --watch scripts/web.ts",
"bun remote": "bun code & bun tailscale",
"code": "code-server --port=4095",
"tailscale": "tailscale serve reset && tailscale serve --bg --http=3001 3000 && tailscale serve --bg --http=4096 4095",
"start": "bun run build && bun scripts/watch.ts",
"build": "bun scripts/build.ts && bun run build:zip",
"build:zip": "rm -f ../image-downloader.zip && cd build && zip -r ../../image-downloader.zip .",
"task": "bun scripts/task.ts",
"test": "bun test",
"lint": "bunx prettier --write .",
"types": "tsc --noEmit"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.8.9",
"@preact-signals/utils": "^0.23.1",
"@preact/signals": "^2.9.0",
"@preact/signals-core": "^1.14.1",
"@tailwindcss/cli": "4.2.2",
"@types/bun": "1.3.11",
"@types/chrome": "0.0.315",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/glob-watcher": "^5.0.5",
"@types/jquery": "3.5.1",
"@types/sharp": "^0.31.1",
"fs-extra": "9.0.1",
"glob": "7.1.6",
"glob-watcher": "5.0.5",
"happy-dom": "20.8.9",
"htm": "^3.1.1",
"nouislider": "^15.8.1",
"preact": "^10.29.1",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-tailwindcss": "0.7.2",
"sharp": "0.34.1",
"sneer": "1.0.1",
"tailwindcss": "4.2.2",
"typescript": "5.8.3"
}
}