-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.11 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
{
"name": "explainmyrepo",
"version": "0.1.5",
"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"
},
"scripts": {
"test": "node --test tests/*.test.mjs",
"start": "node bin/explainmyrepo.mjs"
}
}