UNPKG

@drincs/nqtr

Version:

A complete system introducing the concepts of location, time and event, producing the framework of a not-quite-point-and-click adventure game.

123 lines (122 loc) 2.89 kB
{ "name": "@drincs/nqtr", "version": "1.0.3", "description": "A complete system introducing the concepts of location, time and event, producing the framework of a not-quite-point-and-click adventure game.", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "dev": "tsup --watch", "build": "tsup --config tsup.config.ts", "lint": "biome lint", "check": "biome check", "format": "biome format --write", "test": "vitest", "docs": "typedoc" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs", "default": "./dist/index.mjs" }, "./handlers": { "types": "./dist/handlers.d.ts", "import": "./dist/handlers.mjs", "require": "./dist/handlers.cjs", "default": "./dist/handlers.mjs" }, "./registries": { "types": "./dist/registries.d.ts", "import": "./dist/registries.mjs", "require": "./dist/registries.cjs", "default": "./dist/registries.mjs" }, "./ink": { "types": "./dist/ink.d.ts", "import": "./dist/ink.mjs", "require": "./dist/ink.cjs", "default": "./dist/ink.mjs" }, "./vite": { "types": "./dist/vite.d.ts", "import": "./dist/vite.mjs", "require": "./dist/vite.cjs", "default": "./dist/vite.mjs" } }, "typesVersions": { "*": { "handlers": [ "./dist/handlers.d.ts" ], "registries": [ "./dist/registries.d.ts" ], "ink": [ "./dist/ink.d.ts" ], "vite": [ "./dist/vite.d.ts" ] } }, "repository": { "type": "git", "url": "git+https://github.com/DRincs-Productions/nqtr-pixi-vn.git" }, "author": "DRincs-Productions", "license": "LGPL-2.1", "bugs": { "url": "https://github.com/DRincs-Productions/nqtr-pixi-vn/issues" }, "homepage": "https://pixi-vn.com/nqtr", "devDependencies": { "@biomejs/biome": "^2.4.16", "@drincs/pixi-vn-ink": "^1.1.6", "@drincs/pixi-vn-json": "^1.13.15", "jsdom": "^29.1.1", "ts-node": "^10.9.2", "tsup": "^8.5.1", "typedoc": "^0.28.19", "typedoc-plugin-markdown": "^4.12.0", "typescript": "^6.0.3", "vite-tsconfig-paths": "^6.1.1", "vitest": "^4.1.8" }, "peerDependencies": { "@drincs/pixi-vn": ">=1.8.9", "@drincs/pixi-vn-ink": ">=0.12.2", "vite": ">=5.0.0", "zod": ">=4.4.0" }, "peerDependenciesMeta": { "@drincs/pixi-vn-ink": { "optional": true }, "vite": { "optional": true }, "zod": { "optional": true } }, "keywords": [ "game", "js", "navigation", "novel", "pixi", "pixi-vn", "quest", "routine", "time", "visual", "visual-novel", "vn" ] }