forked from Bedrock-Developpeur-Francophone/ScriptSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 918 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 918 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
{
"name": "scriptsdk",
"version": "1.8.1",
"description": "Use certain Endstone features directly on your add-ons. By using a JS file on your add-ons and the Endstone plugin.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && cp -r lib/* dist/lib/",
"buildp": "pipx run build --wheel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bedrock-Developpeur-Francophone/ScriptSDK.git"
},
"author": "",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/Bedrock-Developpeur-Francophone/ScriptSDK/issues"
},
"homepage": "https://github.com/Bedrock-Developpeur-Francophone/ScriptSDK#readme",
"devDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@minecraft/server": "^2.5.0-beta.1.21.130-stable"
}
}