-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@pipobscure/sea",
"version": "1.0.5",
"description": "Node SEA Builder",
"main": "dist/resolutions.js",
"bin": {
"sea": "./scripts/sea.js"
},
"scripts": {
"test": "node --test \"dist/**/*.test.js\"",
"format": "prettier --write \"src/**/*.ts\" package.json tsconfig.json",
"lint": "eslint --ext ts .",
"build": "tsc --build",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/pipobscure/sea"
},
"engines": {
"node": "^22.0.0-nightly || >=22.0.0"
},
"keywords": [
"SingleExecutableApplication",
"SEA"
],
"contributors": [],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.9",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"glob": "^10.3.10",
"minimatch": "^9.0.3",
"postject": "^1.0.0-alpha.6",
"terser": "^5.26.0"
}
}