@robingamedev/visual-novel-dialogue
Version:
A minimal, JSON-driven dialogue plugin for Phaser 3 games with support for branching choices, typewriter effects, and simple inline formatting.
55 lines (54 loc) • 1.43 kB
JSON
{
"name": "@robingamedev/visual-novel-dialogue",
"version": "1.0.0",
"description": "A minimal, JSON-driven dialogue plugin for Phaser 3 games with support for branching choices, typewriter effects, and simple inline formatting.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/VisualNovelDialogue.d.ts",
"import": "./dist/VisualNovelDialogue.js",
"require": "./dist/VisualNovelDialogue.js"
}
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "if exist dist rmdir /s /q dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"phaser",
"phaser3",
"dialogue",
"visual-novel",
"game",
"plugin",
"typescript",
"dialogue-system",
"text-adventure",
"story-game"
],
"author": "Robin Game Dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/robingamedev/visual-novel-dialogue.git"
},
"bugs": {
"url": "https://github.com/robingamedev/visual-novel-dialogue/issues"
},
"homepage": "https://github.com/robingamedev/visual-novel-dialogue#readme",
"devDependencies": {
"typescript": "^5.0.0"
},
"peerDependencies": {
"phaser": "^3.60.0"
}
}