deckide 3.0.1 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +45 -80
package/package.json CHANGED
@@ -1,80 +1,45 @@
1
- {
2
- "name": "deckide",
3
- "version": "3.0.1",
4
- "description": "Deck IDE - Browser-based IDE with terminal, file explorer, and git integration",
5
- "type": "module",
6
- "bin": {
7
- "deckide": "bin/deckide.js"
8
- },
9
- "files": [
10
- "bin/",
11
- "apps/server/dist/",
12
- "apps/server/package.json",
13
- "apps/web/dist/",
14
- "packages/shared/dist/",
15
- "packages/shared/package.json"
16
- ],
17
- "workspaces": [
18
- "apps/server",
19
- "apps/web",
20
- "packages/*"
21
- ],
22
- "scripts": {
23
- "dev:web": "npm --workspace apps/web run dev",
24
- "dev:server": "npm --workspace apps/server run dev",
25
- "build:shared": "npm --workspace @deck-ide/shared run build",
26
- "build:server": "npm --workspace apps/server run build",
27
- "build:web": "npm --workspace apps/web run build",
28
- "build": "npm run build:shared && npm run build:web && npm run build:server",
29
- "serve": "npm run build && npm --workspace apps/server run serve",
30
- "prepublishOnly": "npm run build"
31
- },
32
- "dependencies": {
33
- "@deck-ide/shared": "file:packages/shared",
34
- "@hono/node-server": "^1.12.2",
35
- "hono": "^4.5.10",
36
- "node-pty": "^1.0.0",
37
- "simple-git": "^3.27.0",
38
- "ws": "^8.17.0",
39
- "zod": "^4.0.0"
40
- },
41
- "bundledDependencies": [
42
- "@deck-ide/shared"
43
- ],
44
- "devDependencies": {
45
- "@monaco-editor/react": "^4.6.0",
46
- "@tailwindcss/vite": "^4.2.1",
47
- "@types/node": "^24.10.9",
48
- "@types/react": "^18.3.12",
49
- "@types/react-dom": "^18.3.1",
50
- "@vitejs/plugin-react": "^4.2.1",
51
- "clsx": "^2.1.1",
52
- "react": "^18.3.1",
53
- "react-dom": "^18.3.1",
54
- "tailwindcss": "^4.2.1",
55
- "tsx": "^4.19.2",
56
- "typescript": "^5.6.3",
57
- "vite": "^5.2.0",
58
- "xterm": "^5.3.0",
59
- "xterm-addon-fit": "^0.8.0",
60
- "xterm-addon-unicode11": "^0.6.0",
61
- "xterm-addon-web-links": "^0.9.0",
62
- "xterm-addon-webgl": "^0.16.0"
63
- },
64
- "engines": {
65
- "node": ">=20"
66
- },
67
- "repository": {
68
- "type": "git",
69
- "url": "https://github.com/tako0614/ide.git"
70
- },
71
- "keywords": [
72
- "ide",
73
- "editor",
74
- "terminal",
75
- "web-ide",
76
- "developer-tools"
77
- ],
78
- "author": "tako0614",
79
- "license": "MIT"
80
- }
1
+ {
2
+ "name": "deckide",
3
+ "version": "3.0.2",
4
+ "description": "Deck IDE - Browser-based IDE with terminal, file explorer, and git integration",
5
+ "type": "module",
6
+ "bin": {
7
+ "deckide": "bin/deckide.js"
8
+ },
9
+ "files": [
10
+ "bin/",
11
+ "apps/server/dist/",
12
+ "apps/server/package.json",
13
+ "apps/web/dist/",
14
+ "packages/shared/dist/",
15
+ "packages/shared/package.json"
16
+ ],
17
+ "dependencies": {
18
+ "@deck-ide/shared": "file:packages/shared",
19
+ "@hono/node-server": "^1.12.2",
20
+ "hono": "^4.5.10",
21
+ "node-pty": "^1.0.0",
22
+ "simple-git": "^3.27.0",
23
+ "ws": "^8.17.0",
24
+ "zod": "^4.0.0"
25
+ },
26
+ "bundledDependencies": [
27
+ "@deck-ide/shared"
28
+ ],
29
+ "engines": {
30
+ "node": ">=20"
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/tako0614/ide.git"
35
+ },
36
+ "keywords": [
37
+ "ide",
38
+ "editor",
39
+ "terminal",
40
+ "web-ide",
41
+ "developer-tools"
42
+ ],
43
+ "author": "tako0614",
44
+ "license": "MIT"
45
+ }