-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.93 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@blurengine/bebe",
"version": "0.5.1",
"description": "BlurEngine game library for Minecraft: Bedrock Edition Scripting API",
"keywords": [
"blurengine",
"minecraft",
"bedrock",
"framework",
"scripting"
],
"author": "Blur Engine Limited",
"license": "Apache-2.0",
"homepage": "https://github.com/BlurEngine/bebe",
"bugs": {
"url": "https://github.com/BlurEngine/bebe/issues"
},
"contributors": [
{
"name": "Ali Moghnieh",
"email": "ali@blurengine.com"
}
],
"exports": {
".": {
"types": "./lib/types/bebe-public.d.ts",
"default": "./lib/index.js"
},
"./bedrock": {
"types": "./lib/types/bebe-public.d.ts",
"default": "./lib/bedrock/index.js"
},
"./maths": {
"types": "./lib/types/bebe-public.d.ts",
"default": "./lib/maths/index.js"
},
"./catalog": {
"types": "./lib/types/bebe-public.d.ts",
"default": "./lib/catalog/index.js"
},
"./features/fishing": {
"types": "./lib/types/bebe-public.d.ts",
"default": "./lib/features/fishing/index.js"
}
},
"type": "module",
"types": "./lib/types/bebe-public.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/BlurEngine/bebe.git"
},
"publishConfig": {
"access": "public"
},
"packageManager": "npm@10.8.2",
"engines": {
"node": ">=22.12.0"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"lib",
"src"
],
"scripts": {
"clean": "node ./scripts/clean.mjs",
"generate:catalog": "node ./scripts/generate-block-catalog.mjs",
"compile": "tsc -p tsconfig.json",
"generate:types": "node ./scripts/generate-types.js",
"build": "npm run clean && npm run generate:catalog && npm run compile && npm run generate:types",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "npm run test",
"pack:dry-run": "npm pack --dry-run",
"check": "npm run format:check && npm run build && npm run test:unit && npm run pack:dry-run",
"hooks:install": "node ./scripts/install-hooks.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepack": "npm run build",
"prepare": "npm run hooks:install"
},
"peerDependencies": {
"@minecraft/server": "^2.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.7",
"@minecraft/server": "^2.3.0",
"@minecraft/vanilla-data": "^1.26.10",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"dts-buddy": "^0.7.0",
"eslint": "^10.2.0",
"eslint-plugin-minecraft-linting": "^2.0.10",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}