forked from heyman/heynote
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 2.28 KB
/
package.json
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
{
"name": "edna",
"version": "1.18",
"main": "webapp/main.js",
"description": "A scratch pad and note taking app for devs",
"author": "Krzysztof Kowalczyk (https://blog.kowalczyk.info) based on Jonatan Heyman (https://heyman.info)",
"license": "Commons Clause MIT",
"private": true,
"type": "module",
"keywords": [],
"scripts": {
"preview": "vite preview",
"build_grammar": "lezer-generator src/editor/lang-heynote/heynote.grammar -o src/editor/lang-heynote/parser.js",
"dev": "vite webapp",
"build": "vite build webapp",
"gen": "bun ./src/gen.mjs",
"test": "playwright test",
"test:ui": "playwright test --ui"
},
"devDependencies": {
"@lezer/generator": "^1.7.1",
"@playwright/test": "^1.48.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.7",
"@types/bun": "^1.1.11",
"@types/node": "^20.16.11",
"autoprefixer": "^10.4.20",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"postcss": "^8.4.47",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^5.0.0-next.264",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.3.0",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-lezer": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.3",
"@codemirror/legacy-modes": "^6.4.1",
"@codemirror/lint": "^6.8.2",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@lezer/highlight": "^1.2.1",
"@lezer/markdown": "^1.3.1",
"@replit/codemirror-lang-csharp": "^6.2.0",
"@replit/codemirror-lang-svelte": "^6.0.0",
"@zip.js/zip.js": "^2.7.52",
"debounce": "^2.1.1",
"idb": "^8.0.0",
"kiss-crypto": "^0.3.4",
"overlayscrollbars": "^2.10.0",
"prettier": "^3.3.3"
}
}