-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "@xmcl/system",
"version": "2.2.7",
"main": "./index.ts",
"browser": "./index.browser.ts",
"description": "An abstract layer for file system on reading zip or plain dictionary/file",
"engines": {
"node": ">=16"
},
"scripts": {
"build:type": "tsc",
"build:cjs": "esbuild --target=node16 --external:yauzl --external:@xmcl/* --platform=node --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts",
"build:esm": "esbuild --target=node16 --external:yauzl --external:@xmcl/* --platform=node --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts",
"build:browser": "esbuild --target=es2020 --sourcemap --external:jszip --external:@xmcl/* --format=esm --bundle --outfile=dist/index.browser.mjs index.browser.ts"
},
"publishConfig": {
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"access": "public"
},
"dependencies": {
"@xmcl/unzip": "workspace:^*",
"jszip": "^3.10.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
},
"author": "[email protected]",
"keywords": [
"minecraft",
"typescript",
"minecraft-launcher",
"nodejs",
"file-system",
"electron"
],
"devDependencies": {
"@types/node": "~18.15.11",
"@types/yauzl": "^2.10.0",
"@xmcl/eslint-config": "workspace:^*",
"esbuild": "^0.17.16",
"eslint": "^8.37.0",
"typescript": "^5.2.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Voxelum/minecraft-launcher-core-node/issues"
},
"homepage": "https://github.com/Voxelum/minecraft-launcher-core-node#readme"
}