-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "scriptorium",
"version": "1.0.0",
"description": "A calm, private place to write.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build": "esbuild public/js/app.js --bundle --outfile=public/dist/app.js --format=esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Christian-Gennari/scriptorium.git"
},
"keywords": [
"writing",
"markdown",
"self-hosted",
"distraction-free",
"editor"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Christian-Gennari/scriptorium/issues"
},
"homepage": "https://github.com/Christian-Gennari/scriptorium#readme",
"dependencies": {
"@tiptap/core": "^3.23.2",
"@tiptap/extension-bubble-menu": "^3.23.2",
"@tiptap/extension-placeholder": "^3.23.2",
"@tiptap/extension-typography": "^3.23.2",
"@tiptap/starter-kit": "^3.23.2",
"express": "^5.2.1",
"marked": "^18.0.3",
"turndown": "^7.2.4"
},
"devDependencies": {
"esbuild": "^0.28.0",
"playwright": "^1.60.0"
}
}