-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "script-box-mc",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"prepublishOnly": "scriptup build --release && node .github/workflows/ensure-dts-export.js",
"repository": "https://github.com/Unknown-Creators-Team/ScriptBoxMC",
"scripts": {
"build": "scriptup build --release",
"watch": "scriptup build --watch"
},
"dependencies": {
"@minecraft/server": "2.6.0-beta.1.26.3-stable",
"@minecraft/server-ui": "2.1.0-beta.1.26.3-stable"
},
"devDependencies": {
"@bedrock-apis/env-types": "^1.0.0-beta.6",
"mc-chalk": "^1.0.2",
"@nano191225/scriptup": "^1.3.2",
"tsdown": "^0.21.2",
"typescript": "^5.9.3"
},
"keywords": [
"minecraft",
"minecraft-bedrock",
"minecraft-script-api",
"scriptapi"
],
"files": [
"dist",
"LICENSE",
"README.md"
]
}