-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"type": "module",
"name": "@nbsjs/core",
"description": "Robust API for reading and writing OpenNBS files.",
"version": "6.0.0",
"author": {
"name": "OpenNBS",
"url": "https://opennbs.org"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/OpenNBS"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenNBS/nbs.js.git"
},
"homepage": "https://opennbs.github.io/nbs.js/docs/",
"license": "MIT",
"keywords": ["api", "minecraft", "nbs", "noteblock", "onbs"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "changelog.md"],
"sideEffects": false,
"scripts": {
"test": "biome format src/ --write && biome lint src/ && bun test",
"build": "bun run build:bundle && bun run build:docs",
"build:bundle": "bun build.ts",
"build:docs": "typedoc",
"build:publish": "bun run test && bun run build && npm publish"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.10",
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/bun": "^1.1.10",
"bun-plugin-dts": "^0.2.3",
"typedoc": "^0.26.7",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-include-example": "^1.2.0",
"typedoc-plugin-mdn-links": "^3.3.0",
"typescript": "^5.6.2"
}
}