forked from heyman/heynote
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.66 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
{
"name": "edna",
"version": "1.39",
"main": "index.html",
"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": {
"build_grammar": "lezer-generator src/editor/lang-heynote/heynote.grammar -o src/editor/lang-heynote/parser.js",
"dev": "vite",
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.json --noEmit",
"gen": "bun ./src/gen.ts",
"test:node": "vitest",
"test:browser": "vitest --config vitest.browser.config.js"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@lezer/generator": "^1.8.0",
"@playwright/test": "^1.58.2",
"@rollup/plugin-terser": "^1.0.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.1",
"@toon-format/toon": "^2.1.0",
"@types/bun": "^1.3.9",
"@types/node": "^24.12.0",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"playwright": "^1.58.2",
"prettier-plugin-svelte": "^3.5.0",
"svelte": "^5.53.11",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"overrides": {
"vite": "^8.0.0-beta.16"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-lezer": "^6.0.2",
"@codemirror/lang-markdown": "^6.3.3",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.9.0",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.12.2",
"@codemirror/legacy-modes": "^6.5.1",
"@codemirror/lint": "^6.9.4",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "6.40.0",
"@lezer/highlight": "^1.2.1",
"@lezer/markdown": "^1.6.3",
"@replit/codemirror-lang-csharp": "^6.2.0",
"@replit/codemirror-lang-svelte": "^6.0.0",
"@zip.js/zip.js": "^2.8.21",
"debounce": "^3.0.0",
"highlight.js": "^11.11.1",
"idb": "^8.0.3",
"kiss-crypto": "^0.3.4",
"overlayscrollbars": "^2.14.0",
"prettier": "^3.8.1"
}
}