wasm-compiler-bridge / package.json
josephrw's picture
WASM Compiler Bridge deploy
fc8f83a verified
Raw
History Blame Contribute Delete
568 Bytes
{
"name": "wasm-compiler-bridge",
"version": "1.0.0",
"description": "C++ and Swift compiler bridge for WebAssembly in the browser",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "npm run build && npm start"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
}
}