-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 916 Bytes
/
package.json
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
{
"name": "markdown-to-starlight",
"version": "1.0.0",
"description": "A handy helper that converts single-file README.md (typically from your GitHub) into a content structure for the Astro Starlight tool.",
"main": "index.js",
"scripts": {
"gen": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janreges/markdown-to-starlight.git"
},
"keywords": [
"markdown",
"astro",
"starlight",
"converter",
"github"
],
"author": "Ján Regeš <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/janreges/markdown-to-starlight/issues"
},
"homepage": "https://github.com/janreges/markdown-to-starlight#readme",
"dependencies": {
"@types/node": "^20.9.0",
"ansi-colors": "^4.1.3",
"axios": "^1.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
}
}