UNPKG

@bscotch/yy

Version:

Stringify, parse, read, and write GameMaker yy and yyp files.

61 lines 1.44 kB
{ "name": "@bscotch/yy", "version": "2.7.0", "description": "Stringify, parse, read, and write GameMaker yy and yyp files.", "keywords": [ "yy", "yyp", "game maker", "gamemaker", "yoyo", "json", "parse", "stringify", "file", "read", "write" ], "homepage": "https://github.com/bscotch/stitch/tree/develop/packages/yy#readme", "repository": { "type": "git", "url": "https://github.com/bscotch/stitch.git", "directory": "packages/yy" }, "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "yy": "./dist/cli.mjs" }, "dependencies": { "@bscotch/utility": "^7.2.0", "tslib": "^2.8.1", "type-fest": "^5.3.1", "uuid": "^13.0.0", "zod": "^4.3.5" }, "devDependencies": { "@types/chai": "^5.2.3", "@types/mocha": "^10.0.10", "chai": "^6.2.2", "mocha": "^11.7.5", "rimraf": "^6.1.2", "typescript": "5.9.3" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc --build", "clean": "rimraf build dist *.tsbuildinfo **/*.tsbuildinfo", "test": "mocha --config ../../config/.mocharc.cjs", "test:dev": "mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999", "watch": "tsc --build --watch" } }