forked from AsakiYuki/AsaJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.2.0",
"debounce-fn": "^6.0.0",
"esbuild": "^0.25.0",
"tiny-glob": "^0.2.9",
"typescript": "^5.7.3"
},
"dependencies": {
"adm-zip": "^0.5.16",
"jsonc-parser": "^3.3.1"
},
"name": "asajs",
"version": "3.0.10",
"description": "Make your Minecraft JsonUI with ScriptingAPI",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "bun run ./scripts/build.ts --types",
"dev": "bun run ./scripts/build.ts --watch --sourcemap",
"ui-pull": "bun scripts/scanner/scan.ts",
"ui-build": "bun scripts/scanner/index.ts",
"import": "bun scripts/index.js",
"items": "bun scripts/items.js",
"stable": "yarn run ui-pull && yarn run ui-build && yarn run import && yarn run build",
"preview": "yarn run stable --preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asakiyuki/asajs.git"
},
"keywords": [
"Minecraft",
"JsonUI"
],
"author": "AsakiYuki",
"contributors": [
"NguyenDuck"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/asakiyuki/asajs/issues"
},
"homepage": "https://github.com/asakiyuki/asajs#readme"
}