-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "weditor",
"version": "0.1.0",
"description": "OpenVSCode Web that runs entirely client-side on Nodepod polyfills (fs, shell, processes, npm), persists to Cloudflare R2, and can escalate a single terminal into a Cloudflare Sandbox container.",
"type": "module",
"license": "MIT",
"sideEffects": false,
"files": [
"dist",
"extension/dist",
"extension/package.json",
"scripts",
"docker"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./protocol": {
"types": "./dist/protocol/index.d.ts",
"default": "./dist/protocol/index.js"
},
"./storage": {
"types": "./dist/storage/index.d.ts",
"default": "./dist/storage/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
},
"./next": {
"types": "./dist/next/index.d.ts",
"default": "./dist/next/index.js"
},
"./worker": {
"types": "./dist/worker/index.d.ts",
"default": "./dist/worker/index.js"
},
"./vinext": {
"types": "./dist/vinext/index.d.ts",
"default": "./dist/vinext/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"opends-fetch-workbench": "./scripts/fetch-workbench.mjs",
"opends-install-openvscode": "./scripts/install-into-openvscode.mjs"
},
"scripts": {
"build": "npm run build:lib && npm run build:extension",
"build:lib": "tsc -p tsconfig.build.json",
"build:extension": "node extension/build.mjs",
"watch:extension": "node extension/build.mjs --watch",
"type-check": "tsc -p tsconfig.json --noEmit && tsc -p extension/tsconfig.json",
"test": "npm run build:lib && node tests/smoke.mjs",
"fetch:workbench": "node scripts/fetch-workbench.mjs",
"install:openvscode": "node scripts/install-into-openvscode.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"vscode",
"openvscode",
"vscode-web",
"browser-ide",
"nodepod",
"webcontainer",
"cloudflare",
"r2",
"sandbox",
"nextjs",
"vinext",
"vite",
"workers"
],
"peerDependencies": {
"@cloudflare/sandbox": "^0.12.0",
"@scelar/nodepod": ">=1.9.0",
"next": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@cloudflare/sandbox": {
"optional": true
},
"next": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250801.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/vscode": "^1.90.0",
"esbuild": "^0.24.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20"
}
}