-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "ai-browser-sandbox",
"version": "0.1.3",
"description": "Build Vite-style project files in the browser and get a Blob URL for iframe loading",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun run tsc",
"tsc": "tsc",
"dev": "bun run build",
"example": "bun run build && bun build src/index.ts --outfile=example/dist/ai-browser-sandbox.js --target=browser --format=esm && bunx serve example -p 3000"
},
"dependencies": {
"esbuild-wasm": "^0.24.0"
},
"devDependencies": {
"typescript": "^5.6.0"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/starc007/browser-sandbox.git"
},
"keywords": [
"browser",
"sandbox",
"preview",
"esbuild",
"react",
"vite",
"ai-generated"
],
"license": "MIT",
"author": "Saurabh (https://x.com/saurra3h)"
}