-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.97 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
{
"name": "sapi-game",
"version": "0.0.2",
"description": "make mini game fully by sapi",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"author": {
"name": "XiaoYangx666",
"email": "2408807389@qq.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitee.com/ykxyx666_admin/sapi-game.git"
},
"files": [
"dist"
],
"exports": {
".": "./dist/main.js",
"./main": "./dist/main.js",
"./utils": "./dist/utils/index.js",
"./gameComponent": "./dist/gameComponent/index.js",
"./gamePlayer": "./dist/gamePlayer/index.js",
"./gameRegion": "./dist/gameRegion/index.js",
"./gameState": "./dist/gameState/index.js",
"./gameStructure": "./dist/gameStructure/gameStructure.js",
"./constants": "./dist/constants.js",
"./gameContext": "./dist/gameContext.js",
"./createGameModule": "./dist/createGameModule.js",
"./utils/vanila-data": "./dist/utils/vanila-data.js"
},
"dependencies": {
"@minecraft/server": "2.3.0",
"@minecraft/server-ui": "2.0.0"
},
"overrides": {
"@minecraft/server-ui": {
"@minecraft/server": "2.3.0"
}
},
"scripts": {
"clean": "rimraf dist || true",
"build": "npm run clean && tsc && tsc-alias",
"doc": "npx typedoc --plugin typedoc-plugin-markdown ./src/main.ts --disableSources --name SAPI-Game"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0"
},
"keywords": [
"minecraft",
"bedrock",
"bedrock-edition",
"ScriptApi",
"library",
"miniGame"
]
}