-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.24 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.24 KB
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
{
"name": "@angablue/exe",
"version": "3.2.5",
"description": "Build a portable binary for Windows systems using Node's SEA.",
"main": "dist/index.js",
"bin": {
"exe": "dist/cli.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "ts-node ./test/build.ts",
"test:cli": "ts-node ./src/cli.ts ./test/exe.json",
"lint": "biome check --fix --error-on-warnings",
"watch": "npm run clean && tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngaBlue/exe.git"
},
"keywords": [
"exe",
"windows",
"build",
"binary"
],
"author": {
"name": "AngaBlue",
"email": "contact@anga.blue",
"url": "https://anga.blue"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AngaBlue/exe/issues"
},
"homepage": "https://github.com/AngaBlue/exe#readme",
"devDependencies": {
"@angablue/biome-config": "^1.0.5",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.18",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@vercel/ncc": "^0.38.3",
"postject": "1.0.0-alpha.6",
"resedit": "^2.0.3",
"signtool": "^1.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
]
}
}