forked from BYK/fossilize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fossilize",
"author": "Burak Yigit Kaya <ben@byk.im> (https://byk.im)",
"description": "Create Node SEA binaries across platforms with ease",
"homepage": "https://github.com/BYK/fossilize",
"repository": "github:BYK/fossilize",
"license": "MIT",
"type": "module",
"version": "0.2.2",
"keywords": [
"node",
"sea",
"binary",
"packaging",
"packager",
"fossilize"
],
"files": [
"dist",
"import-meta-url.js",
"entitlements.plist"
],
"main": "dist/cli.js",
"bin": {
"fossilize": "dist/cli.js",
"__fossilize_bash_complete": "dist/bash-complete.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "tsc -p src/tsconfig.json",
"build": "tsup",
"prepublishOnly": "npm run build",
"#postinstall": "npx @stricli/auto-complete@latest install fossilize __fossilize_bash_complete"
},
"tsup": {
"entry": [
"src/bin/cli.ts",
"src/bin/bash-complete.ts"
],
"format": [
"esm"
],
"tsconfig": "src/tsconfig.json",
"clean": true,
"splitting": true,
"minify": true,
"sourcemap": true
},
"dependencies": {
"@stricli/auto-complete": "^1.1.0",
"@stricli/core": "^1.1.0",
"esbuild": "^0.25.0",
"macho-unsign": "^2.0.6",
"p-limit": "^6.2.0",
"portable-executable-signature": "^2.0.6",
"postject": "^1.0.0-alpha.6",
"tar-stream": "^3.1.7",
"xz-decompress": "^0.2.2",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/node": "22.x",
"@types/tar-stream": "^3.1.3",
"@types/yauzl": "^2.10.3",
"tsup": "^6.7.0",
"typescript": "5.6.x"
},
"volta": {
"node": "22.14.0"
}
}