ShatteredSword/package.json

29 lines
696 B
JSON
Raw Normal View History

2020-08-03 16:51:20 -04:00
{
"name": "wolfie2d",
2020-08-03 16:51:20 -04:00
"version": "1.0.0",
"description": "A game engine written in TypeScript",
"main": "./dist/main.js",
"scripts": {
2022-04-12 00:08:57 -04:00
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"deploy": "gulp && firebase deploy"
2020-08-03 16:51:20 -04:00
},
"author": "Joe Weaver",
"license": "ISC",
"devDependencies": {
"browserify": "^16.5.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"tsify": "^5.0.0",
2022-04-12 00:08:57 -04:00
"typescript": "^3.9.10",
2020-08-03 16:51:20 -04:00
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
2022-04-12 00:08:57 -04:00
"gulp-shell": "^0.8.0",
"random-seed": "^0.3.0",
"typescript-require": "^0.3.0"
2020-08-03 16:51:20 -04:00
}
}