-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
43 lines (43 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
{
"name": "@xmcl/gamesetting",
"version": "3.0.2",
"main": "./index.ts",
"description": "Parse Minecraft gamesetting (options.txt) with type.",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.mjs"
},
"scripts": {
"build:type": "tsc",
"build:cjs": "esbuild --target=es2020 --platform=neutral --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts",
"build:esm": "esbuild --target=es2020 --platform=neutral --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts"
},
"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",
"typescript": "^5.2.2"
}
}