@bscotch/yy
Version:
Stringify, parse, read, and write GameMaker yy and yyp files.
62 lines • 1.47 kB
JSON
{
"name": "@bscotch/yy",
"version": "2.4.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.js"
},
"dependencies": {
"@bscotch/utility": "^7.2.0",
"tslib": "^2.6.2",
"type-fest": "^4.7.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@types/uuid": "^9.0.7",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"typescript": "5.2.2"
},
"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"
}
}