@drincs/pixi-vn-json
Version:
Pixi'VN can be integrated with JSON files to create a visual novel.
81 lines (80 loc) • 2.09 kB
JSON
{
"name": "@drincs/pixi-vn-json",
"version": "1.7.2",
"type": "module",
"description": "Pixi'VN can be integrated with JSON files to create a visual novel.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:unifier": "tsup --config tsup.unifier.config.ts",
"build:importer": "tsup --config tsup.importer.config.ts",
"build:index": "tsup --config tsup.config.ts",
"build": "npm run build:unifier && npm run build:importer && npm run build:index",
"test": "vitest"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./unifier": {
"types": "./dist/unifier.d.ts",
"import": "./dist/unifier.mjs",
"require": "./dist/unifier.cjs",
"default": "./dist/unifier.mjs"
},
"./importer": {
"types": "./dist/importer.d.ts",
"import": "./dist/importer.mjs",
"require": "./dist/importer.cjs",
"default": "./dist/importer.mjs"
}
},
"typesVersions": {
"*": {
"unifier": ["./dist/unifier.d.ts"],
"importer": ["./dist/importer.d.ts"]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRincs-Productions/pixi-vn-json.git"
},
"author": "DRincs-Productions",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/DRincs-Productions/pixi-vn-json/issues"
},
"homepage": "hthttps://pixi-vn.web.app/other-topics/pixi-vn-json",
"funding": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"crypto-js": "^4.2.0",
"jsdom": "^26.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@drincs/pixi-vn": ">=1.3.19"
},
"keywords": [
"game",
"js",
"json",
"novel",
"pixi",
"pixi-js",
"visual",
"visual-novel"
],
"dependencies": {
"vitest": "^3.2.4"
}
}