-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "@shilpi1958/code-explainer",
"version": "3.0.0",
"description": "Explain a PR or a whole repo in plain English — calibrated to whoever's reading, plus a CLI quiz.",
"type": "module",
"bin": {
"code-explainer": "src/cli.js",
"pr-explainer": "src/cli.js"
},
"files": [
"src",
"templates"
],
"scripts": {
"start": "node src/cli.js",
"check": "node --check src/cli.js && node --check src/posthog.js && node --check src/load-env.js && node --check src/quiz.js && node --check src/claude.js && node --check src/github.js && node --check src/prompt.js && node --check src/display.js && node --check src/graphify.js && node --check src/repo-context.js",
"test": "node --test test/**/*.test.js"
},
"keywords": [
"github",
"pull-request",
"pr",
"repo",
"explainer",
"claude",
"cli",
"documentation",
"code-explainer"
],
"author": "shilpi1958",
"repository": {
"type": "git",
"url": "git+https://github.com/shilpi1958/code-explainer.git"
},
"homepage": "https://shilpi1958.github.io/code-explainer/",
"bugs": {
"url": "https://github.com/shilpi1958/code-explainer/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"posthog-node": "^5.47.3"
}
}