-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "@mcbe-mods/utils",
"description": "Provide convenient and practical tools to improve the efficiency of mod development.",
"version": "0.1.1",
"type": "module",
"scripts": {
"build": "pnpm lint && node build.js && tsc",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --check --write src"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcbe-mods/Utils"
},
"files": [
"dist"
],
"keywords": [
"minecraft",
"bedrock",
"utils"
],
"devDependencies": {
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"prettier": "^3.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@minecraft/server": "latest"
}
}