-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.86 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "repocheckai",
"version": "2.8.2",
"description": "AI-powered GitHub repository health analyzer using GitHub Copilot SDK",
"main": "dist/index.js",
"type": "module",
"bin": {
"repocheck": "./dist/index.js",
"repo-doctor": "./dist/index.js",
"repodoctor": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/postbuild.mjs",
"icons:generate": "node scripts/generate-icons.mjs",
"icons:check": "npm run icons:generate && git diff --exit-code -- src/presentation/web/public/icon-16.png src/presentation/web/public/icon-32.png src/presentation/web/public/icon-180.png src/presentation/web/public/icon-512.png src/presentation/web/public/favicon.ico src/presentation/web/public/site.webmanifest src/presentation/web/public/index.html",
"dev": "npm run dev:cli",
"dev:cli": "npx tsx src/presentation/cli.ts",
"dev:web-ui:api": "npx tsx src/presentation/api/index.ts",
"dev:web-ui": "npx tsx src/presentation/web/main.ts",
"dev:api": "npm run dev:web-ui:api",
"dev:web": "npm run dev:web-ui",
"build:web-ui": "npm run build",
"build:web": "npm run build:web-ui",
"preview:web-ui": "node dist/web/main.js",
"preview:web": "npm run preview:web-ui",
"dev:local-ui": "node scripts/dev-local-ui.mjs",
"start": "node dist/index.js",
"chat": "npx tsx src/presentation/cli.ts chat",
"analyze": "npx tsx src/presentation/cli.ts analyze",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:unit": "vitest run --exclude tests/web/publicUiA11y.test.ts",
"test:a11y": "vitest run tests/web/publicUiA11y.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:all": "vitest run && vitest run --config vitest.integration.config.ts",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/glaucia86/repocheckai.git"
},
"keywords": [
"github",
"repository",
"health",
"analyzer",
"ai",
"copilot",
"github-copilot",
"dx",
"developer-experience",
"ci-cd",
"governance",
"cli"
],
"author": "Glaucia Lemos",
"license": "MIT",
"bugs": {
"url": "https://github.com/glaucia86/repocheckai/issues"
},
"homepage": "https://github.com/glaucia86/repocheckai#readme",
"dependencies": {
"@github/copilot-sdk": "~0.2.2",
"@inquirer/prompts": "~8.3.0",
"@octokit/rest": "~22.0.1",
"chalk": "~5.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "~14.0.3",
"cross-spawn": "~7.0.6",
"ora": "~9.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.6.0",
"vscode-jsonrpc": "^8.2.1",
"zod": "~4.3.6"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/commander": "^2.12.5",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^25.6.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.5.0",
"axe-core": "^4.11.3",
"eslint": "^10.2.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^17.5.0",
"husky": "^9.1.6",
"jsdom": "^29.0.2",
"png-to-ico": "^3.0.1",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.10",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.0.0"
}
}