-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sapi-pro",
"version": "0.4.1",
"description": "A practical library for MCBE ScriptAPI",
"main": "scripts/main.js",
"types": "scripts/main.d.ts",
"type": "module",
"author": {
"name": "XiaoYangx666",
"email": "2408807389@qq.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/XiaoYangx666/SAPI-Pro.git"
},
"peerDependencies": {
"@minecraft/server": "^2.9.0-beta.1.26.30-stable",
"@minecraft/server-ui": "^2.2.0-beta.1.26.30-stable",
"@minecraft/vanilla-data": ">=1.26.0"
},
"devDependencies": {
"@minecraft/common": "1.2.0",
"@minecraft/server": "2.9.0-beta.1.26.30-stable",
"@minecraft/server-ui": "2.2.0-beta.1.26.30-stable",
"@minecraft/vanilla-data": "1.26.10",
"@types/node": "^26.1.2",
"fflate": "^0.8.3",
"rimraf": "^6.1.3",
"rolldown": "^1.2.0",
"rolldown-plugin-dts": "^0.28.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^7.0.2",
"vitest": "^4.1.8"
},
"scripts": {
"clean": "rimraf build scripts",
"dev": "rolldown -c rolldown.config.ts -w",
"typecheck": "tsc --noEmit",
"compile": "rolldown -c rolldown.config.ts",
"test": "vitest run",
"package": "node tools/build.ts",
"build": "npm run clean && npm run typecheck && npm run compile && npm run package",
"pack": "npm run typecheck && npm run compile && npm pack",
"doc": "npx typedoc --plugin typedoc-plugin-markdown ./src/main.ts --disableSources",
"skills": "node tools/cp_skill.ts"
},
"files": [
"scripts"
],
"exports": {
".": "./scripts/main.js",
"./Deferred": "./scripts/Deferred/index.js",
"./Form": "./scripts/Form/main.js",
"./Translate": "./scripts/Translate/index.js",
"./Event": "./scripts/Event.js",
"./func": "./scripts/func.js",
"./constants": "./scripts/constants.js",
"./utils": "./scripts/utils/main.js",
"./Command": "./scripts/Command/main.js",
"./DataBase": "./scripts/DataBase/index.js"
},
"keywords": [
"minecraft",
"bedrock",
"bedrock-edition",
"ScriptApi",
"library"
],
"sideEffects": false
}