40 lines
968 B
JSON
40 lines
968 B
JSON
{
|
|
"name": "asajs",
|
|
"version": "4.0.0",
|
|
"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": "MIT",
|
|
"author": "Asaki Yuki",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "bun test/app.ts",
|
|
"test:watch": "bun --watch test/app.ts",
|
|
"prefetch": "bun scripts/prefetch",
|
|
"vanilla:defs": "bun scripts/vanilladefs",
|
|
"gen:enums": "bun scripts/enum",
|
|
"gen:items": "bun scripts/items",
|
|
"gen:autocomplete": "bun scripts/autocomplete-build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^3.3.1"
|
|
}
|
|
}
|