-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "waypaper-engine",
"private": true,
"version": "2.0.4",
"author": {
"name": "0bCdian",
"email": "[email protected]",
"url": "https://github.com/0bCdian"
},
"scripts": {
"dev": "npm run compile_daemon && vite",
"rebuild": "electron-rebuild --w node_modules/better-sqlite3",
"compile_daemon": "tsc daemon/daemon.ts --outDir ./daemon/dist --target ES2020 --moduleResolution node --esModuleInterop --skipLibCheck --module CommonJs",
"build": "cd daemon && npm install && cd .. && npm install && npm run rebuild && npm run compile_daemon && vite build && electron-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"db:extract_schema": "drizzle-kit introspect:sqlite",
"db:generate": "drizzle-kit generate:sqlite",
"db:studio": "drizzle-kit studio",
"db:drop_migration": "drizzle-kit drop",
"db:migrate": "tsc ./electron/database/migrations/migrate.ts --esModuleInterop",
"preview": "vite preview"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "6.0.1",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.2",
"better-sqlite3": "11.5.0",
"chokidar": "4.0.1",
"drizzle-orm": "0.30.8",
"framer-motion": "10.13.1",
"pino": "9.0.0",
"react": "18.2.0",
"node-addon-api": "8.3.0",
"node-gyp": "11.0.0",
"react-bezier-curve-editor": "1.1.2",
"react-dom": "18.2.0",
"react-hook-form": "7.53.0",
"react-hotkeys-hook": "4.5.0",
"react-responsive-pagination": "2.9.0",
"react-router-dom": "6.15.0",
"reflect-metadata": "0.2.2",
"sharp": "0.33.5",
"zustand": "4.5.5"
},
"devDependencies": {
"@electron/rebuild": "3.6.0",
"@eslint/js": "9.15.0",
"@originjs/vite-plugin-commonjs": "1.0.3",
"@types/better-sqlite3": "7.6.9",
"@types/node": "22.13.0",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/validator": "13.12.2",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.14",
"daisyui": "4.7.2",
"drizzle-kit": "0.20.14",
"electron": "31.0.0",
"electron-builder": "25.1.8",
"eslint": "9.9.1",
"eslint-plugin-react": "7.37.4",
"globals": "15.9.0",
"postcss": "8.4.41",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"tailwind-scrollbar": "3.1.0",
"tailwindcss": "3.4.13",
"typescript": "5.5.4",
"typescript-eslint": "^8.23.0",
"vite": "5.4.14",
"vite-plugin-electron": "0.28.8",
"vite-plugin-electron-renderer": "0.14.6"
},
"main": "dist-electron/main.js",
"homepage": "./"
}