-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.55 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.55 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
90
91
92
93
94
95
96
{
"name": "recto-wiki",
"private": true,
"version": "0.3.1",
"description": "RectoWiki - A modern, dual-mode (Web & Desktop) personal wiki and digital garden.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run gen-content && vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm run dev\" \"wait-on tcp:127.0.0.1:5173 && cross-env NODE_ENV=development electron .\"",
"electron:build": "npm run gen-content && cross-env ELECTRON_BUILD=true vite build && electron-builder",
"gen-content": "node scripts/generate-content.js",
"test": "vitest run"
},
"build": {
"appId": "club.huangweiran.rectowiki",
"productName": "RectoWiki",
"icon": "public/logo.png",
"directories": {
"output": "dist_electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraResources": [
"content/**/*"
],
"mac": {
"target": "dmg",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
},
"publish": [
{
"provider": "github",
"owner": "EtoDemerzel0427",
"repo": "RectoWiki"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/EtoDemerzel0427/RectoWiki.git"
},
"main": "electron/main.cjs",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"abcjs": "^6.5.2",
"chokidar": "^5.0.0",
"fs-extra": "^11.3.2",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.555.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.4",
"electron-builder": "^26.0.12",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"vite": "^7.2.4",
"vitest": "^4.0.14",
"wait-on": "^9.0.3"
}
}