UNPKG

@yotoplay/twee2json

Version:

Convert Twine/Twee files to JSON format

61 lines (60 loc) 1.56 kB
{ "name": "@yotoplay/twee2json", "version": "1.1.0", "description": "Convert Twine/Twee files to JSON format", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc && npm run copy-test-data", "copy-test-data": "cp -r __tests__/data dist/__tests__/", "test": "vitest run", "test:watch": "vitest", "lint": "eslint .", "format": "prettier --check .", "format:fix": "prettier --write .", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build && npm test" }, "keywords": [ "twine", "twee", "json", "converter", "interactive-fiction" ], "author": "Yoto", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/yotoplay/twee2json.git" }, "bugs": { "url": "https://github.com/yotoplay/twee2json/issues" }, "homepage": "https://github.com/yotoplay/twee2json#readme", "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.3", "@semantic-release/npm": "^12.0.2", "@semantic-release/release-notes-generator": "^14.0.3", "@tsconfig/node20": "^20.1.2", "@types/node": "^20.0.0", "eslint": "^9.15.0", "prettier": "^3.3.3", "typescript": "^5.6.3", "vitest": "^3.2.3" } }