yukinovel
Version:
Yukinovel is a simple web visual novel engine.
57 lines (56 loc) • 1.22 kB
JSON
{
"name": "yukinovel",
"version": "1.1.6",
"description": "Yukinovel is a simple web visual novel engine.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./plugins": {
"import": "./dist/plugins/index.js",
"types": "./dist/plugins/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "jest",
"example": "cd test && npm run build"
},
"keywords": [
"visual-novel",
"game",
"typescript",
"interactive-fiction",
"story",
"anime"
],
"publishConfig": {
"access": "public"
},
"author": "Yukiookii",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.19.8",
"jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@types/howler": "^2.2.7",
"howler": "^2.2.4"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/MegumiKatou02/Yukinovel.git"
}
}