-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 997 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 997 Bytes
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
{
"name": "minecraft-bedrock-typescript-starter",
"version": "1.0.0",
"description": "TypeScript starter project for Minecraft Bedrock Edition",
"main": "dist/main.js",
"scripts": {
"watch": "tsc --watch",
"sync": "node build-tools/watch.js",
"dev": "pnpm run watch & pnpm run sync"
},
"devDependencies": {
"@minecraft/server": "2.1.0-beta.1.21.93-stable",
"@minecraft/server-net": "1.0.0-beta.1.21.93-stable",
"@minecraft/server-ui": "^2.0.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.11.24",
"archiver": "^7.0.1",
"chokidar": "^3.5.3",
"crypto-js": "4.2.0",
"dotenv": "^16.4.5",
"esbuild": "^0.25.4",
"fs-extra": "^11.2.0",
"typescript": "^5.3.3"
},
"keywords": [
"minecraft",
"bedrock",
"typescript",
"addon"
],
"author": "",
"license": "MIT",
"dependencies": {
"@minecraft/common": "^1.2.0",
"@minecraft/server-admin": "1.0.0-beta.11940b24",
"fs-extra": "^11.3.0"
}
}