-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.18 KB
/
package.json
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
{
"name": "@bedrock-oss/bedrock-boost",
"version": "0.1.2",
"description": "A utility package with helper functions for developing add-ons with Script API in Minecraft Bedrock Edition",
"keywords": [
"minecraft",
"bedrock",
"addon",
"script-api",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Bedrock-OSS/bedrock-boost.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"test": "jest",
"prepublishOnly": "npm run build"
},
"author": "Bedrock-OSS",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-minecraft-linting": "^1.1.0"
},
"dependencies": {
"@minecraft/server": "beta",
"@minecraft/common": "latest"
},
"publishConfig": {
"access": "public"
}
}