-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.36 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
{
"name": "remnux-cli",
"version": "1.5.2",
"description": "Manage your REMnux installation",
"main": "remnux-cli.js",
"bin": {
"remnux-cli": "remnux-cli.js"
},
"engines": {
"node": "22.x"
},
"scripts": {
"pkg:prep": "jo version=$(bash .ci/version) logPath='/var/cache/remnux/cli' > config.json",
"pkg:build": "npx @yao-pkg/pkg -t node22-linux --out-dir release package.json && cd release && mv remnux-cli remnux-cli-linux",
"pkg:hash": "cd release && shasum -a 256 remnux-cli-linux > remnux-cli-linux.sha256",
"pkg:sign": "cd release && rm -f remnux-cli-linux.sha256.asc && gpg --armor --clearsign --digest-algo SHA256 -u 28CD19DB remnux-cli-linux.sha256 && rm remnux-cli-linux.sha256",
"pkg:nosign": "npm run pkg:prep && npm run pkg:build && npm run pkg:hash",
"pkg": "npm run pkg:nosign && npm run pkg:sign"
},
"author": "Erik Kristensen <erik@erikkristensen.com>. Revised for REMnux by Lenny Zeltser.",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^18.12.0",
"docopt": "0.6.2",
"js-yaml": "4.1.0",
"openpgp": "5.11.2",
"split": "1.0.1",
"username": "4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@yao-pkg/pkg": "6.5.1",
"eslint": "^9.30.1",
"globals": "^16.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/REMnux/remnux-cli.git"
}
}