-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "@pie-framework/pie-code-health",
"version": "1.0.0",
"description": "AI-assisted code health analysis tool for PIE elements - detects deprecated patterns, risky code, and suggests refactoring opportunities",
"main": "src/index.js",
"type": "module",
"bin": {
"pie-health": "./bin/pie-health.js",
"pie-health-scan": "./bin/scan.js",
"pie-health-report": "./bin/generate-report.js",
"pie-health-dashboard": "./bin/dashboard.js",
"pie-health-serve": "./bin/serve.js",
"pie-health-check": "./bin/check.js"
},
"scripts": {
"start": "node src/index.js",
"analyze": "node src/analyze.js",
"report": "node src/report.js",
"html": "node src/html-report.js",
"dashboard": "node src/html-report-spa.js",
"scan": "node src/scan.js --all",
"scan:package": "node src/scan.js",
"deprecated": "node src/analyzers/deprecated.js",
"risks": "node src/analyzers/risks.js",
"dependencies": "node src/analyzers/dependencies.js",
"serve": "node src/serve.js"
},
"keywords": [
"code-health",
"static-analysis",
"deprecated",
"refactoring",
"pie-framework"
],
"author": "PIE Framework",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pie-framework/pie-code-health.git"
},
"bugs": {
"url": "https://github.com/pie-framework/pie-code-health/issues"
},
"homepage": "https://github.com/pie-framework/pie-code-health#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/**/*",
"bin/**/*",
"config.json",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"glob": "^10.3.10",
"ora": "^7.0.1"
},
"devDependencies": {
"eslint": "^8.56.0"
}
}