-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.57 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.57 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
{
"name": "codecritique",
"version": "0.0.0-development",
"description": "AI-powered code review tool for any programming language",
"type": "module",
"main": "src/index.js",
"bin": {
"codecritique": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:types": "tsc --noEmit",
"prepublishOnly": "chmod +x src/index.js",
"lint": "eslint . --cache",
"lint:ci": "eslint . --cache --cache-strategy content",
"lint:fix": "eslint . --cache --fix",
"prettier": "prettier --write . --cache --cache-location ./.prettier-cache",
"prettier:ci": "prettier --check . --cache --cache-location ./.prettier-cache --cache-strategy content",
"knip": "knip",
"create-release": "semantic-release"
},
"keywords": [
"code-review",
"static-analysis",
"ai",
"javascript",
"typescript",
"react",
"python",
"ruby",
"cli",
"code-quality",
"linter"
],
"files": [
"src/*.js",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/cosmocoder/CodeCritique#readme",
"bugs": {
"url": "https://github.com/cosmocoder/CodeCritique/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmocoder/CodeCritique.git"
},
"license": "MIT",
"author": "cosmocoder",
"dependencies": {
"@anthropic-ai/sdk": "0.71.0",
"@huggingface/transformers": "3.8.0",
"@lancedb/lancedb": "0.22.3",
"@octokit/rest": "22.0.1",
"chalk": "5.6.2",
"cli-spinner": "0.2.10",
"commander": "14.0.1",
"dotenv": "17.2.3",
"fastembed": "2.0.0",
"glob": "13.0.0",
"linguist-languages": "9.1.0",
"lru-cache": "11.2.2",
"minimatch": "10.1.1",
"stopwords-iso": "1.1.0"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/github": "12.0.3",
"@semantic-release/npm": "13.1.3",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/node": "24.9.1",
"@vitest/coverage-v8": "4.0.16",
"@vitest/eslint-plugin": "1.3.23",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"globals": "16.5.0",
"knip": "5.70.2",
"prettier": "3.7.1",
"typescript": "5.9.3",
"vitest": "4.0.16"
},
"volta": {
"node": "22.14.0",
"npm": "10.9.2"
},
"engines": {
"node": ">=22.14.0",
"npm": "10.x"
},
"engine-strict": true,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}