-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 862 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 862 Bytes
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
{
"name": "elec",
"version": "1.0.0",
"description": "ELEC - a local GUI certificate manager for Let's Encrypt DNS-01 workflows",
"type": "module",
"main": "dist-cjs/server.cjs",
"bin": "dist-cjs/server.cjs",
"scripts": {
"start": "node src/server.mjs",
"test": "node scripts/run-tests.mjs",
"smoke": "node scripts/smoke-test.mjs",
"dev": "node --watch src/server.mjs",
"build:cjs": "node scripts/build-cjs.mjs",
"build": "npm run build:exe",
"build:exe": "npm run build:cjs && set PKG_CACHE_PATH=.pkg-cache&& pkg . --targets node18-win-x64 --no-bytecode --public --output build/ELEC.exe"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"adm-zip": "^0.5.17",
"express": "^5.1.0",
"multer": "^2.1.1",
"pkg": "^5.8.1"
},
"pkg": {
"assets": [
"dist-cjs/public/**/*"
]
}
}