forked from RawDiamondMC/sapi-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "sapi-utils",
"version": "0.1.0-alpha.3",
"description": "Add some useful functions for minecraft script API.",
"keywords": [
"minecraft"
],
"homepage": "https://github.com/RawDiamondMC/sapi-utils#readme",
"bugs": {
"url": "https://github.com/RawDiamondMC/sapi-utils/issues",
"email": "RawDiamondMC@outlook.com"
},
"license": "EPL-2.0",
"author": "RawDiamondMC <RawDiamondMC@outlook.com>",
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"funding": [
{
"type": "Buy Me a Coffee",
"url": "https://www.buymeacoffee.com/rawdiamondmc"
}
],
"main": "src/index.js",
"repository": "RawDiamondMC/sapi-utils",
"scripts": {
"build": "tsx build.ts",
"tsc": "tsc"
},
"devDependencies": {
"typescript": "^5.4.5",
"esbuild": "^0.20.2",
"tsx": "^4.8.2",
"@types/node": "^20.12.8"
},
"peerDependencies": {
"@minecraft/server": ">=1.10.0-beta.1.20.70-preview.20 <1.10.0-rc.1.20.80-preview.20 || >=1.11.0-beta.1.20.80-preview.20 <1.11.0-rc.1.21.0-preview.20 || >=1.12.0-beta.1.21.0-preview.20 <1.12.0-rc",
"@minecraft/server-ui": ">=1.2.0-beta.1.20.10-preview.23 <1.2.0-rc"
},
"packageManager": "pnpm@9.0.6",
"typings": "src/index.d.ts"
}