-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
{
"name": "@angablue/exe",
"version": "3.2.4",
"description": "Build a portable binary for Windows systems using Vercel's pkg",
"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"
},
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/AngaBlue/exe/issues"
},
"homepage": "https://github.com/AngaBlue/exe#readme",
"devDependencies": {
"@angablue/biome-config": "^1.0.1",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"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"
}
}