-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 824 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 824 Bytes
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
{
"name": "vanilla-blocks-plugin",
"version": "1.0.1",
"author": "Serial-V",
"description": "Implements most vanilla-blocks functionality for Serenity.",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"release": "git commit -m \"Prepare Release\" || true && npm version patch && git push && git push --tags"
},
"keywords": [
"Vanilla",
"Behaviors",
"Blocks"
],
"peerDependencies": {
"@serenityjs/core": "^0.8.17-beta-20251217200233",
"@serenityjs/plugins": "^0.8.17-beta-20251217200233",
"@serenityjs/protocol": "^0.8.17-beta-20251217200233",
"@serenityjs/logger": "^0.8.17-beta-20251217200233",
"@serenityjs/nbt": "^0.8.17-beta-20251217200233"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}