-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.09 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
{
"name": "cmdbook",
"version": "0.2.0",
"description": "A searchable notebook for your terminal commands.",
"type": "module",
"main": "./dist/index.js",
"bin": {
"cmdbook": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"clean": "rm -rf dist",
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"prepack": "npm run build",
"format": "prettier -w ."
},
"engines": {
"node": ">=20 <24"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/doniaskima/CmdBook.git"
},
"keywords": [
"cli",
"commands",
"shell",
"notebook",
"productivity"
],
"dependencies": {
"better-sqlite3": "^9.6.0",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"commander": "^12.1.0",
"prettier": "3.6.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "22.19.1",
"ts-node": "^10.9.2",
"tsx": "4.20.6",
"typescript": "5.9.3"
}
}