-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "@xmcl/client",
"version": "3.1.1",
"main": "./index.ts",
"description": "Minecraft socket pipeline utilities. Support Minecraft lan server discovery.",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.mjs"
},
"scripts": {
"build:type": "tsc",
"build:cjs": "esbuild --target=node16 --platform=node --external:long --external:@xmcl/* --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts",
"build:esm": "esbuild --target=node16 --platform=node --external:long --external:@xmcl/* --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts"
},
"dependencies": {
"@xmcl/bytebuffer": "workspace:^*",
"@xmcl/nbt": "workspace:^*",
"@xmcl/text-component": "workspace:^*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
},
"author": "[email protected]",
"keywords": [
"minecraft",
"typescript",
"minecraft-launcher",
"nodejs",
"electron"
],
"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/eslint-config": "workspace:^*",
"esbuild": "^0.17.16",
"eslint": "^8.37.0",
"tslib": "^2.5.0",
"typescript": "^5.2.2"
}
}