-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.32 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
40
41
42
43
44
45
46
47
{
"name": "minecraft-scripting-libraries",
"version": "1.0.0",
"author": "Raphael Landaverde ([email protected])",
"description": "Collection of libraries and tooling for minecraft scripting.",
"repository": {
"type": "git",
"url": "git+https://github.com/Mojang/minecraft-scripting-libraries.git"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean",
"change": "beachball change",
"release": "beachball publish --access public"
},
"keywords": [
"minecraft",
"scripting",
"api",
"creator"
],
"bugs": {
"url": "https://github.com/Mojang/minecraft-scripting-libraries/issues"
},
"homepage": "https://github.com/Mojang/minecraft-scripting-libraries#readme",
"workspaces": [
"libraries/*",
"tools/*"
],
"devDependencies": {
"@rushstack/node-core-library": "^3.59.6",
"@types/glob": "^8.0.0",
"@types/node": "^20.0.0",
"beachball": "^2.39.0",
"chalk": "^5.3.0",
"eslint": "^8.53.0",
"glob": "^8.0.3",
"prettier": "^3.0.3",
"turbo": "^1.11.2"
}
}