40 lines
971 B
JSON
40 lines
971 B
JSON
{
|
|
"name": "create-wasm-app",
|
|
"version": "0.1.0",
|
|
"description": "create an app to consume rust-generated wasm packages",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"create-wasm-app": ".bin/create-wasm-app.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"start": "vite preview"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
|
|
},
|
|
"keywords": [
|
|
"webassembly",
|
|
"wasm",
|
|
"rust",
|
|
"webpack"
|
|
],
|
|
"author": "Ashley Williams <ashley666ashley@gmail.com>",
|
|
"license": "(MIT OR Apache-2.0)",
|
|
"bugs": {
|
|
"url": "https://github.com/rustwasm/create-wasm-app/issues"
|
|
},
|
|
"homepage": "https://github.com/rustwasm/create-wasm-app#readme",
|
|
"dependencies": {
|
|
"wasm-game-of-life": "file:../pkg"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "^6.1.1",
|
|
"vite-plugin-static-copy": "^2.2.0",
|
|
"vite-plugin-top-level-await": "^1.5.0",
|
|
"vite-plugin-wasm": "^3.4.1"
|
|
}
|
|
}
|