-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.41 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc -b && vite build && electron-builder --dir",
"preview": "vite preview --host 127.0.0.1",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@codemirror/commands": "latest",
"@codemirror/lang-markdown": "latest",
"@codemirror/language": "latest",
"@codemirror/search": "latest",
"@codemirror/state": "latest",
"@codemirror/view": "latest",
"@electron-toolkit/preload": "latest",
"@electron-toolkit/utils": "latest",
"@lezer/highlight": "latest",
"@radix-ui/react-dialog": "latest",
"@radix-ui/react-dropdown-menu": "latest",
"@radix-ui/react-icons": "latest",
"@radix-ui/react-scroll-area": "latest",
"@radix-ui/react-select": "latest",
"@radix-ui/react-separator": "latest",
"@radix-ui/react-slider": "latest",
"@radix-ui/react-slot": "latest",
"@radix-ui/react-tabs": "latest",
"@radix-ui/react-toast": "latest",
"better-sqlite3": "latest",
"chokidar": "latest",
"class-variance-authority": "latest",
"clsx": "latest",
"cmdk": "latest",
"gray-matter": "latest",
"hast-util-sanitize": "^5.0.2",
"lucide-react": "latest",
"mdast-util-to-string": "^4.0.0",
"nanoid": "latest",
"react": "latest",
"react-dom": "latest",
"react-resizable-panels": "latest",
"rehype-highlight": "^7.0.2",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tailwind-merge": "latest",
"tailwindcss-animate": "latest",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"zustand": "latest"
},
"devDependencies": {
"@eslint/js": "latest",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"autoprefixer": "^10.5.0",
"electron": "^38.4.0",
"electron-builder": "latest",
"esbuild": "^0.28.0",
"eslint": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-react-refresh": "latest",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "latest",
"typescript-eslint": "^8.59.3",
"vite": "latest",
"vite-plugin-electron": "latest",
"vite-plugin-electron-renderer": "latest",
"vitest": "^4.1.6"
},
"main": "dist-electron/main.js",
"build": {
"appId": "studio.lightpaper.app",
"productName": "LightPaper",
"directories": {
"output": "release"
},
"files": [
"dist/**",
"dist-electron/**",
"package.json"
],
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage",
"category": "Office"
}
},
"private": true,
"version": "0.1.0",
"type": "module",
"name": "lightpaper",
"description": "A cross-platform, plugin-first Markdown editor with AI-ready workflows.",
"author": "LightPaper Studio"
}