-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "explainmyrepo",
"version": "0.4.3",
"description": "Turn any GitHub repo into a bespoke, art-directed explainer site — for humans and their AI — in one command.",
"type": "module",
"bin": {
"explainmyrepo": "bin/explainmyrepo.mjs"
},
"files": [
"bin/",
"src/",
"tools/",
"kb/*.mjs",
"kb/CONTRACT.md",
"assets/"
],
"keywords": [
"explainer",
"documentation",
"github",
"repo",
"ai",
"knowledge-base",
"static-site",
"npx"
],
"homepage": "https://github.com/stuinfla/Repo-Explainer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stuinfla/Repo-Explainer.git"
},
"bugs": {
"url": "https://github.com/stuinfla/Repo-Explainer/issues"
},
"author": "ISOvision",
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ruvector/rvf": "^0.2.2",
"@xenova/transformers": "^2.17.2",
"playwright": "^1.61.1",
"sharp": "^0.35.3"
},
"scripts": {
"test": "node --test tests/*.test.mjs",
"start": "node bin/explainmyrepo.mjs"
}
}