-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.05 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.05 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
49
50
51
52
53
54
55
{
"name": "co.lutea.lyrthing",
"private": true,
"version": "0.8.9",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:vite\" \"npm run dev:wrapper\"",
"build-windows": "vite build && npm run build-server-windows",
"build-server-windows": "esbuild server/index.ts --bundle --platform=node --outdir=dist/ && cd dist && powershell -c ren index.js index.cjs && powershell -c compress-archive -path ./* -destinationpath ./lyrthing",
"build-and-zip": "npm run build && npm run zip-server-unix",
"build": "npx @deskthing/cli package",
"build-server": "esbuild server/index.ts --bundle --platform=node --outdir=dist/",
"zip-server-unix": "cd dist && mv index.js index.cjs && zip -r lyrthing.zip .",
"setup": "node setup.js",
"lint": "eslint .",
"preview": "vite preview",
"dev:vite": "vite",
"dev:wrapper": "npx @deskthing/cli dev"
},
"dependencies": {
"@deskthing/client": "^0.11.1",
"@deskthing/server": "^0.11.1",
"clsx": "^2.1.1",
"node-vibrant": "^3.1.6",
"preact": "^10.24.3",
"react": "npm:@preact/compat",
"react-crossfade-simple": "^1.0.7",
"react-dom": "npm:@preact/compat",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@deskthing/cli": "^0.11.4",
"@deskthing/types": "^0.11.8",
"@eslint/js": "^9.9.0",
"@preact/preset-vite": "^2.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"concurrently": "^9.1.2",
"esbuild": "^0.19.2",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"tsm": "^2.3.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.19"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}