31 lines
796 B
JSON
31 lines
796 B
JSON
{
|
|
"name": "base2020",
|
|
"version": "2.0.0",
|
|
"description": "base code for HTML5 games",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "parcel build src/index.html",
|
|
"clean": "rimraf .cache dist",
|
|
"live": "parcel src/index.html",
|
|
"tsc:check": "tsc --noEmit"
|
|
},
|
|
"author": "Tangent 128",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"parcel-bundler": "^1.12.4",
|
|
"rimraf": "^3.0.2",
|
|
"sass": "^1.26.5",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"callbag": "^1.2.0",
|
|
"callbag-animation-frames": "^2.1.0",
|
|
"callbag-create": "^2.1.0",
|
|
"callbag-map": "^1.1.0",
|
|
"callbag-pipe": "^1.2.0",
|
|
"callbag-share": "^1.2.0",
|
|
"callbag-subscribe": "^1.5.1"
|
|
}
|
|
}
|