-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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": "complexity-cli",
"version": "1.1.0",
"description": "A CLI tool for managing project complexity and knowledge maps",
"type": "module",
"main": "dist/index.js",
"bin": {
"complexity": "dist/index.js"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"link": "npm run build && npm link",
"prepublishOnly": "npm run build"
},
"keywords": [
"complexity",
"documentation",
"knowledge-map",
"cli",
"project-management",
"onboarding",
"ai-tools"
],
"author": "Sam Wagner <SamBWagner@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SamBWagner/complexity-cli.git"
},
"bugs": {
"url": "https://github.com/SamBWagner/complexity-cli/issues"
},
"homepage": "https://github.com/SamBWagner/complexity-cli#readme",
"files": [
"dist",
"Complexity.template.md",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"inquirer": "^9.2.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"tsdown": "^0.20.3",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}