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