-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.27 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
41
42
43
44
45
{
"name": "explainshell-cli",
"version": "0.0.5",
"description": "A CLI tool to get explanations from explainshell.com",
"main": "dist/main.js",
"type": "module",
"bin": {
"explain": "dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx watch src/main.ts",
"test": "tsx --test tests/main.test.ts",
"prestart": "npm run build",
"prepublishOnly": "npm run build",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"release:patch": "npm run version:patch && tsx scripts/release.ts",
"release:minor": "npm run version:minor && tsx scripts/release.ts",
"release:major": "npm run version:major && tsx scripts/release.ts",
"release": "npm run release:patch"
},
"keywords": [
"cli",
"explainshell",
"shell",
"typescript"
],
"author": "Manuele J Sarfatti",
"license": "MIT",
"dependencies": {
"axios": "^1.9.0",
"chalk": "^5.4.1",
"cheerio": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node-lts": "^22.0.1",
"@tsconfig/node-ts": "^23.6.1",
"@types/node": "^22.15.18",
"tsx": "^4.7.1",
"typescript": "^5.8.3"
}
}