@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.
98 lines (97 loc) • 2.28 kB
JSON
{
"name": "@drincs/nqtr",
"version": "0.8.2",
"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": {
"build": "tsup",
"test": "vitest"
},
"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"
}
},
"typesVersions": {
"*": {
"handlers": [
"./dist/handlers.d.ts"
],
"registries": [
"./dist/registries.d.ts"
],
"ink": [
"./dist/ink.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.web.app/nqtr",
"devDependencies": {
"@drincs/pixi-vn-ink": "^0.12.2",
"@drincs/pixi-vn-json": "^1.10.1",
"jsdom": "^28.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@drincs/pixi-vn": ">=1.5.17",
"@drincs/pixi-vn-ink": ">=0.12.2"
},
"peerDependenciesMeta": {
"@drincs/pixi-vn-ink": {
"optional": true
}
},
"keywords": [
"game",
"js",
"navigation",
"novel",
"pixi",
"pixi-vn",
"quest",
"routine",
"time",
"visual",
"visual-novel",
"vn"
]
}