42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "asajs",
|
|
"version": "4.1.7",
|
|
"description": "Create your Minecraft JSON-UI resource packs using JavaScript",
|
|
"keywords": [
|
|
"Minecraft",
|
|
"JSON-UI"
|
|
],
|
|
"homepage": "https://github.com/asakiyuki/asajs",
|
|
"bugs": {
|
|
"url": "https://github.com/asakiyuki/asajs/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/asakiyuki/asajs.git"
|
|
},
|
|
"license": "GPL-3.0-only",
|
|
"author": "Asaki Yuki",
|
|
"type": "module",
|
|
"main": "dist/js/index.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "bun test/app.ts",
|
|
"prefetch": "bun scripts/prefetch",
|
|
"vanilla:defs": "bun scripts/vanilladefs",
|
|
"vanilla:paths-optimize": "bun scripts/paths-optimize",
|
|
"gen:enums": "bun scripts/enum",
|
|
"gen:items": "bun scripts/items",
|
|
"gen:autocomplete": "bun scripts/autocomplete-build",
|
|
"full-build": "bun run prefetch;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items;\nbun run gen:autocomplete;\nbun run vanilla:paths-optimize;\nbun run build",
|
|
"full-build-preview": "bun run prefetch --preview;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items --preview;\nbun run gen:autocomplete;\nbun run vanilla:paths-optimize;\nbun run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^3.3.1"
|
|
}
|
|
}
|