-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "command-shortner",
"version": "2.3.0",
"description": "A tool that lets users save and run long terminal commands with short aliases",
"main": "dist/src/index.js",
"bin": {
"boost": "./bin/cli-shortner",
"command-shortner": "./bin/cli-shortner"
},
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/src/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint src/**/*.ts",
"postinstall": "node ./dist/scripts/post-install.js || echo 'No post-install script'"
},
"keywords": [
"cli",
"productivity",
"shortcut",
"alias",
"shortner",
"command",
"terminal",
"shell",
"bash",
"zsh",
"powershell",
"cmd",
"productivity-tool",
"alias-manager",
"cli-tool"
],
"homepage": "https://github.com/Sajid-tech/command-shortner-cli#readme",
"bugs": {
"url": "https://github.com/Sajid-tech/command-shortner-cli/issues"
},
"author": "Sajid Hussain",
"license": "GPL-3.0",
"dependencies": {
"axios": "^1.9.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"conf": "^12.0.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^19.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^17.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.51.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Sajid-tech/command-shortner-cli"
},
"type": "module"
}