-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@xmcl/bytebuffer",
"version": "0.1.1",
"main": "./index.ts",
"description": "A bytebuffer module ported from bytebuffer.js",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"debug": {
"import": "./dist/debug.mjs",
"require": "./dist/debug.js"
},
"hex": {
"import": "./dist/hex.mjs",
"require": "./dist/hex.js"
},
"varint32": {
"import": "./dist/varint32.mjs",
"require": "./dist/varint32.js"
},
"varint64": {
"import": "./dist/varint64.mjs",
"require": "./dist/varint64.js"
}
}
},
"scripts": {
"build:type": "tsc",
"build:esm": "tsx build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
},
"author": "[email protected]",
"keywords": [
"typescript",
"nodejs",
"electron",
"bytebuffer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Voxelum/minecraft-launcher-core-node/issues"
},
"homepage": "https://github.com/Voxelum/minecraft-launcher-core-node#readme",
"devDependencies": {
"@types/node": "~18.15.11",
"@xmcl/oxlint-config": "workspace:^*",
"bytebuffer": "^5.0.1",
"esbuild": "^0.17.16",
"oxlint": "^0.15.5",
"tslib": "^2.5.0",
"typescript": "^5.3.3"
}
}