UNPKG

dicebox

Version:

build tool for typescript based RPG Maker MV plugins

56 lines (55 loc) 1.25 kB
{ "name": "dicebox", "version": "1.0.4", "description": "build tool for typescript based RPG Maker MV plugins", "repository": "https://github.com/illBeRoy/dicebox.git", "keywords": [ "build tool", "rpg maker mv", "rmmv" ], "author": "Roy Sommer", "main": "dist/src/index.js", "directories": { "test": "test" }, "files": [ "dist", "types", "boilerplate", "conf.js", "conf.d.ts" ], "scripts": { "test": "jest", "start": "node .", "prepublishOnly": "npm run build", "build": "npm run build:typescript", "build:typescript": "tsc", "watch": "npm run watch:typescript", "watch:typescript": "tsc -w" }, "bin": { "dicebox": "dist/src/cli.js" }, "license": "ISC", "devDependencies": { "@types/argparse": "^1.0.36", "@types/jest": "^24.0.18", "@types/node": "^12.7.5", "@types/prompts": "^2.0.1", "@types/shelljs": "^0.8.5", "tslint": "^5.20.0", "tslint-eslint-rules": "^5.4.0" }, "dependencies": { "argparse": "^1.0.10", "ejs": "^2.7.1", "lodash.kebabcase": "^4.1.1", "parcel-bundler": "^1.12.3", "prompts": "^2.2.1", "shelljs": "^0.8.3", "ts-node": "^8.4.1", "typescript": "^3.6.3" } }