| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "d8d-webcontainer-server",
- "version": "1.0.1",
- "type": "module",
- "description": "Server implementation for D8D WebContainer",
- "keywords": ["webcontainer", "d8d", "server"],
- "homepage": "https://github.com/d8d-dev/d8d-webcontainer",
- "bugs": {
- "url": "https://github.com/d8d-dev/d8d-webcontainer/issues"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/d8d-dev/d8d-webcontainer.git"
- },
- "author": "D8D Team",
- "license": "MIT",
- "main": "./dist/index.js",
- "module": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "bin": {
- "d8d-webcontainer-server": "./dist/start.js"
- },
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.js",
- "require": "./dist/index.cjs"
- }
- },
- "scripts": {
- "build:types": "tsc --emitDeclarationOnly",
- "build:js": "tsup src/index.ts src/start.ts --format esm,cjs --external d8d-webcontainer-types",
- "build": "npm run build:types && npm run build:js",
- "start": "node dist/start.js",
- "dev": "tsx src/start.ts"
- },
- "dependencies": {
- "d8d-webcontainer-types": "^1.0.1",
- "socket.io": "^4.7.4"
- },
- "devDependencies": {
- "@types/node": "^20.11.24",
- "tsup": "^8.0.2",
- "tsx": "^4.7.1"
- }
- }
|