UNPKG

rpg-dialogue-js

Version:

A simple roleplay game dialogue engine and editor.

59 lines (58 loc) 1.86 kB
{ "name": "rpg-dialogue-js", "version": "1.0.1", "description": "A simple roleplay game dialogue engine and editor.", "main": "src/ts/index.ts", "repository": { "type": "git", "url": "https://github.com/IkarosKappler/rpg-dialogue-js" }, "scripts": { "clean": "shx rm -rf dist/_bundles dist/lib-cjs dist/lib-esm", "compile-typescript-cjs": "tsc", "compile-typescript-esm": "tsc -m es6 --outDir dist/lib-esm", "compile-typescript": "npm run compile-typescript-cjs && npm run compile-typescript-esm", "build": "npm run clean & npm run build-dev & npm run compile-typescript", "build-dev": "npm run compile-typescript-cjs", "webpack-prod": "npx webpack --env=production --config webpack.config.js", "webpack-dev": "npx webpack --env=development --config webpack.config.js", "webpack": "npm run webpack-dev && npm run webpack-prod", "start-ts": "webpack-dev-server --hot --port 3000 --open", "start-wp": "webpack --config webpack.config.js --watch", "serve": "python3 -m http.server 8000", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "RPG", "Dialogue", "Dialog", "Game", "Gameplay", "Roleplay", "Chat", "NPC", "Non playable character" ], "author": "Ikaros Kappler", "license": "MIT", "devDependencies": { "@babel/core": "^7.22.15", "@babel/preset-env": "^7.22.15", "babel-loader": "^9.1.3", "shx": "^0.3.4", "source-map-loader": "^4.0.0", "terser-webpack-plugin": "^5.3.9", "ts-loader": "^9.4.4", "tsc": "^2.0.4", "typescript": "^4.8.4", "webpack": "^5.88.2", "webpack-cli": "^5.1.4" }, "dependencies": { "@types/dat.gui": "^0.7.7", "alloyfinger-typescript": "^0.1.19", "axios": "^1.4.0", "dat.gui": "^0.7.9", "plotboilerplate": "^1.21.0" } }