-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "@xmcl/forge-site-parser",
"version": "2.0.9",
"main": "./index.ts",
"description": "A MinecraftForge web page parser",
"engines": {
"node": ">=20"
},
"scripts": {
"build:type": "tsc",
"build:cjs": "esbuild --target=node16 --platform=node --external:node-html-parser --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts",
"build:esm": "esbuild --target=node16 --platform=node --external:node-html-parser --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.mjs"
},
"dependencies": {
"node-html-parser": "^6.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
},
"author": "[email protected]",
"keywords": [
"minecraft",
"typescript",
"minecraft-launcher",
"nodejs",
"electron",
"forge",
"minecraftforge",
"liteloader",
"fabric"
],
"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:^*",
"esbuild": "^0.17.16",
"oxlint": "^0.15.5",
"typescript": "^5.3.3"
}
}