forked from SIsilicon/WorldEdit-BE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.33 KB
/
package.json
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
{
"name": "worldedit",
"author": {
"name": "SIsilicon",
"email": "sisilicon28@gmail.com",
"url": "https://twitter.com/IsiliconS"
},
"bugs": {
"url": "https://github.com/SIsilicon/WorldEdit-BE/issues"
},
"scripts": {
"watch": "python build.py --watch=stable",
"watch:preview": "python build.py --watch=preview",
"watch:server": "python build.py --watch=server",
"build:all": "python build.py --target=release --clean && python build.py --target=server",
"build:beta": "python build.py --target=debug --clean",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"format": "npm run lint:fix"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@minecraft/server": "^1.11.0-beta.1.20.80-preview.23",
"@minecraft/server-admin": "^1.0.0-beta.1.19.80-stable",
"@minecraft/server-ui": "^1.2.0-beta.1.20.80-preview.23"
},
"overrides": {
"@minecraft/server-ui": {
"@minecraft/server": "^1.11.0-beta.1.20.80-preview.20"
}
}
}