-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "pyhtml-demo",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.58.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/eslint": "^9.6.1",
"@types/node": "^24.12.0",
"eslint": "^10.2.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.5.0",
"svelte": "^5.55.5",
"svelte-check": "^4.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"vite": "^8.0.10",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-static-copy": "^4.1.0"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-python": "^6.2.1",
"@fsegurai/codemirror-theme-high-contrast-dark": "^6.0.0",
"@fsegurai/codemirror-theme-high-contrast-light": "^6.0.2",
"@fsegurai/codemirror-theme-material-dark": "^6.2.3",
"@fsegurai/codemirror-theme-material-light": "^6.2.5",
"pyodide": "^0.29.3",
"svelte-codemirror-editor": "^2.1.0"
},
"overrides": {
"@sveltejs/kit": {
"cookie": "^0.7.0"
}
},
"engines": {
"node": ">=22"
}
}