-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 893 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 893 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
32
33
34
35
36
37
38
39
40
{
"name": "crazy-dev-tools",
"version": "1.0.0",
"description": "An original, innovative developer toolset inspired by ohmyzsh, starship, and lazygit.",
"main": "src/prompt.js",
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"build": "tsc",
"release": "standard-version"
},
"keywords": [
"developer",
"tools",
"shell",
"git",
"cli",
"prompt",
"terminal",
"utility"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@inquirer/core": "^10.1.11",
"chalk": "^5.0.0",
"inquirer": "^12.6.3",
"simple-git": "^3.16.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/node": "^22.15.21",
"eslint": "^9.28.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"typescript": "^5.8.3"
}
}