This repository was archived by the owner on Aug 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"name": "sapi-utils",
"version": "0.5.2",
"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.5.3",
"esbuild": "^0.23.0",
"tsx": "^4.16.2",
"@types/node": "^20.14.10"
},
"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.1.21.10-preview.20 || >=1.13.0-beta.1.21.10-preview.20 <1.13.0-rc.1.21.20-preview.21 || >=1.14.0-beta.1.21.20-preview.21 < 1.14.0-rc"
},
"packageManager": "pnpm@9.4.0",
"typings": "src/index.d.ts"
}