-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 908 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
{
"name": "superacli",
"version": "1.32.0",
"description": "10,000+ tools. One CLI. Zero configuration.",
"license": "MIT",
"main": "server/app.js",
"bin": {
"dcli": "./cli/supercli.js",
"scli": "./cli/supercli.js",
"superacli": "./cli/supercli.js",
"supercli": "./cli/supercli.js",
"sc": "./cli/supercli.js"
},
"scripts": {
"start": "node cli/supercli.js",
"test": "jest",
"postinstall": "node cli/supercli.js plugins install ./plugins/supercli-mastery --on-conflict replace --json 2>/dev/null || true",
"install:skills": "node cli/supercli.js skills sync",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:major": "npm version major && git push --follow-tags && npm publish"
},
"engines": {
"node": ">=18.0.0"
}
}