-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "mineflayer-death-event",
"version": "2.0.0",
"description": "Emit player death event in Mineflayer.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/tuanzisama/mineflayer-death-event#readme",
"bugs": {
"url": "https://github.com/tuanzisama/mineflayer-death-event/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuanzisama/mineflayer-death-event.git"
},
"author": "tuanzi <me@tuanzi.ink>",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"playground": "node ./playground/index.mjs",
"typecheck": "vue-tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"mineflayer": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"bumpp": "^10.3.1",
"mineflayer": "^4.33.0",
"prismarine-chat": "^1.12.0",
"ts-node": "^10.9.2",
"tsdown": "^0.16.4",
"typescript": "^5.9.3"
}
}