-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 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
{
"name": "luau-playground",
"private": true,
"version": "0.1.0",
"description": "Browser-based Luau code playground with execution and IDE features",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build:wasm": "cd wasm && ./build.sh",
"prebuild": "npm run build:wasm",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.1",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^24.10.1",
"oniguruma-to-es": "^4.3.4",
"svelte": "^5.53.11",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^8.0.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@lezer/highlight": "^1.2.3",
"@oddbird/css-anchor-positioning": "^0.9.0",
"@oddbird/popover-polyfill": "^0.6.1",
"@phosphor-icons/core": "^2.1.1",
"lz-string": "^1.5.0",
"vscode-textmate": "^9.3.2"
}
}