-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.11 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
{
"name": "colonynote",
"version": "1.0.9",
"engines": {
"node": ">=18"
},
"sideEffects": false,
"description": "Markdown online editor with real-time preview and LaTeX support",
"keywords": [
"markdown",
"editor",
"latex",
"real-time",
"cli",
"document"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "岳晓亮 <hi@yuexiaoliang.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/opencolony/note.git"
},
"type": "module",
"bin": {
"colonynote": "./bin/colonynote.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"dev": "tsx src/dev.ts --dir ./workspace",
"dev:frontend": "vite",
"dev:backend": "tsx src/server/index.ts",
"build": "vite build && tsc -p tsconfig.server.json",
"preview": "vite preview",
"start": "node dist/server/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest",
"release": "bumpp",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hono/node-server": "^1.19.14",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@tiptap/core": "3.22.2",
"@tiptap/extension-code-block-lowlight": "^3.20.4",
"@tiptap/extension-highlight": "^3.20.4",
"@tiptap/extension-image": "^3.20.4",
"@tiptap/extension-link": "^3.20.4",
"@tiptap/extension-placeholder": "^3.20.4",
"@tiptap/extension-table": "^3.20.4",
"@tiptap/extension-table-cell": "^3.20.4",
"@tiptap/extension-table-header": "^3.20.4",
"@tiptap/extension-table-row": "^3.20.4",
"@tiptap/extension-task-item": "^3.20.4",
"@tiptap/extension-task-list": "^3.20.4",
"@tiptap/extension-typography": "^3.20.4",
"@tiptap/extension-underline": "^3.20.4",
"@tiptap/pm": "^3.20.4",
"@tiptap/react": "^3.20.4",
"@tiptap/starter-kit": "^3.20.4",
"chokidar": "^4.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commander": "^14.0.3",
"diff": "^9.0.0",
"fuzzysort": "^3.1.0",
"hono": "^4.12.18",
"js-yaml": "^4.1.1",
"katex": "^0.16.45",
"lowlight": "^3.3.0",
"lucide-react": "^0.577.0",
"markdown-extensions": "^2.0.0",
"mermaid": "^11.14.0",
"minimatch": "^10.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tiptap-markdown": "^0.9.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.15",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"bumpp": "^11.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.10",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"uuid": "^14.0.0"
}
}
}