-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "polypress",
"private": true,
"version": "0.1.0",
"description": "An automated, plugin-based multi-platform article publishing tool.",
"author": "",
"license": "GPL-3.0-or-later",
"type": "module",
"main": "out/main/index.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--trace-warnings electron-vite dev --watch",
"build": "electron-vite build",
"postinstall": "electron-rebuild",
"preview": "electron-vite preview",
"pack": "pnpm run build && electron-builder --dir",
"dist": "pnpm run build && electron-builder",
"icon": "bun src/script/electron-icon-maker.ts --input ./public/icons --output ./build",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@material/material-color-utilities": "^0.3.0",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/x-tree-view": "^8.24.0",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"better-sqlite3": "^12.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"electron-window-state": "^5.0.3",
"embla-carousel-react": "^8.6.0",
"esbuild": "^0.27.2",
"github-markdown-css": "^5.8.1",
"i18next": "^25.7.4",
"iconv-lite": "^0.7.2",
"jschardet": "^3.1.4",
"lodash": "^4.17.21",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.3",
"react-helmet-async": "^2.0.5",
"react-i18next": "^16.5.2",
"recharts": "2.15.4",
"rxdb": "^16.21.1",
"tailwind-merge": "^3.4.0",
"vaul": "^1.1.2",
"wouter": "^3.9.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@unocss/preset-wind4": "^66.5.12",
"@unocss/transformer-directives": "^66.5.12",
"@vitejs/plugin-react": "^5.1.2",
"args": "^5.0.3",
"cross-env": "^10.1.0",
"drizzle-kit": "^0.31.8",
"electron": "39.2.7",
"electron-builder": "^26.4.0",
"electron-rebuild": "^3.2.9",
"electron-vite": "^5.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"icon-gen": "^5.0.0",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"unocss": "^66.5.12",
"unocss-preset-animations": "^1.3.0",
"unocss-preset-shadcn": "^1.0.1",
"vite": "^7.3.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}