-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.46 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"scripts": {
"dev": "vite",
"build": "node --max-old-space-size=4096 node_modules/vite/bin/vite build",
"preview": "vite preview",
"fmt": "prettier -uwu .",
"check": "tsc -b && eslint ."
},
"name": "goboscript-ide",
"version": "0.1.0",
"private": true,
"description": "the goboscript IDE",
"homepage": "https://aspiz.uk/goboscript/ide",
"repository": "https://github.com/aspizu/goboscript-ide",
"author": {
"name": "Priyanshu Dangare",
"email": "aspizu@protonmail.com",
"url": "https://aspiz.uk"
},
"type": "module",
"dependencies": {
"@fontsource-variable/inter": "^5.2.5",
"@fontsource/cascadia-code": "^5.2.1",
"@icons-pack/react-simple-icons": "^12.9.0",
"@monaco-editor/react": "^4.7.0-rc.0",
"@preact/signals-react": "^3.0.1",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.15",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/vite": "^4.1.7",
"@turbowarp/scaffolding": "^0.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"goboscript": "file:goboscript/pkg",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"lucide-react": "^0.511.0",
"monaco-editor": "^0.52.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.7",
"vite": "^6.3.5"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@preact/signals-react-transform": "^0.5.1",
"@turbowarp/types-tw": "^0.0.6",
"@types/file-saver": "^2.0.7",
"@types/jszip": "^3.4.1",
"@types/node": "^22.15.21",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.5.0",
"eslint-plugin-ban-relative-imports": "^0.1.1",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tw-animate-css": "^1.3.0",
"typescript-eslint": "^8.32.1",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.4.1"
}
}