This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/package.json
2026-01-04 10:52:31 +07:00

36 lines
806 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": "npx tsc",
"watch": "npx tsc --watch",
"test": "bun test/app.ts",
"test-watch": "bun --watch test/app.ts",
"prefetch": "bun scripts/prefetch"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^5.9.3"
},
"dependencies": {
"jsonc-parser": "^3.3.1"
}
}