-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"name": "quickcmd",
"description": "quickcmd is a CLI tool for managing and accessing frequently used commands easily.",
"type": "module",
"main": "bin/index.js",
"license": "MIT",
"author": {
"name": "Somya Bhatt",
"username": "@shanksxz",
"email": "somyacu1@gmail.com",
"url": "https://github.com/shanksxz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shanksxz/quickcmd.git"
},
"version": "1.1.0",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node bin/index.js",
"test": "vitest",
"format-and-lint": "biome check ./src",
"format-and-lint:fix": "biome check --write ./src",
"prepare": "husky"
},
"bin": {
"qk": "bin/index.js"
},
"keywords": [
"cli",
"command-line",
"commands",
"management",
"productivity",
"workflow",
"terminal",
"developer",
"sysadmin"
],
"dependencies": {
"@clack/prompts": "^0.10.1",
"chalk": "^5.4.1",
"commander": "^13.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.12.7",
"@types/yargs": "^17.0.32",
"husky": "^9.1.7",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}