-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "xsea",
"version": "0.1.0",
"description": "Cross-platform SEA generation",
"keywords": [],
"bin": {
"xsea": "dist/cli.js"
},
"files": [
"dist",
"license.md"
],
"type": "module",
"homepage": "https://github.com/james-pre/xsea",
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/james-pre/xsea.git"
},
"bugs": {
"url": "https://github.com/james-pre/xsea/issues"
},
"engines": {
"node": ">= 16"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tsc -p tsconfig.json --noEmit && eslint src",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.10.1",
"@types/tar": "^6.1.13",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"adm-zip": "^0.5.16",
"postject": "^1.0.0-alpha.6",
"tar": "^7.4.3"
}
}