2019-09-13 22:54:21 +02:00
|
|
|
{
|
|
|
|
"name": "create-wasm-app",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "create an app to consume rust-generated wasm packages",
|
2019-09-22 11:58:47 +02:00
|
|
|
"main": "./bootstrap.js",
|
2019-09-16 21:18:01 +02:00
|
|
|
"types": "dist/index.d.ts",
|
2019-09-13 22:54:21 +02:00
|
|
|
"scripts": {
|
2019-09-22 11:58:47 +02:00
|
|
|
"develop": "webpack --mode development --watch",
|
2019-09-13 22:54:21 +02:00
|
|
|
"build": "webpack --config webpack.config.js",
|
2019-09-22 11:58:47 +02:00
|
|
|
"start": "webpack-dev-server --content-base dist/"
|
2019-09-13 22:54:21 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"webassembly",
|
|
|
|
"wasm",
|
|
|
|
"rust",
|
|
|
|
"webpack",
|
|
|
|
"mozaic"
|
|
|
|
],
|
2019-09-16 21:18:01 +02:00
|
|
|
"dependencies": {
|
2019-09-21 18:56:46 +02:00
|
|
|
"config-ini-parser": "^1.2.2",
|
2019-09-19 17:52:48 +02:00
|
|
|
"extract-svg-path": "^2.1.0",
|
|
|
|
"load-svg": "^1.0.0",
|
2019-09-21 18:56:46 +02:00
|
|
|
"planetwars": "file:../pkg",
|
2019-09-28 21:05:25 +02:00
|
|
|
"svg-mesh-3d": "^1.1.0",
|
|
|
|
"ts-heap": "^1.1.3"
|
2019-09-16 21:18:01 +02:00
|
|
|
},
|
2019-09-13 22:54:21 +02:00
|
|
|
"author": "Arthur Vercruysse <arthur.vercruysse@outlook.com>",
|
|
|
|
"license": "(MIT OR Apache-2.0)",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/ajuvercr/Planetwars/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/ajuvercr/Planetwars#Readme",
|
|
|
|
"devDependencies": {
|
|
|
|
"webpack": "^4.29.3",
|
2019-09-16 21:18:01 +02:00
|
|
|
"ts-loader": "^6.0.2",
|
2019-09-23 10:28:07 +02:00
|
|
|
"static-eval": ">=2.0.0",
|
2019-09-16 21:18:01 +02:00
|
|
|
"typescript": "^3.5.2",
|
2019-09-13 22:54:21 +02:00
|
|
|
"webpack-cli": "^3.1.0",
|
|
|
|
"webpack-dev-server": "^3.1.5",
|
|
|
|
"copy-webpack-plugin": "^5.0.0"
|
|
|
|
}
|
|
|
|
}
|