-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.6 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
54
55
56
57
58
59
{
"name": "gramene-githubdocs",
"version": "1.4.0",
"description": "React component that renders a tree of Markdown files from a GitHub repo, with subdirectories as navigation levels",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib"
],
"scripts": {
"clean": "rimraf es lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions .js",
"build:lib": "cross-env BABEL_ENV=lib babel src --out-dir lib --extensions .js",
"build": "npm run clean && npm run build:es && npm run build:lib",
"prepublishOnly": "npm run build",
"start": "vite"
},
"dependencies": {
"@pondorasti/remark-img-links": "^1.0.8",
"react-icons": "^4.12.0",
"react-remark": "^2.1.0",
"rehype-slug": "^4.0.0",
"remark-gfm": "^1.0.0"
},
"peerDependencies": {
"react": "17.x || 18.x",
"react-dom": "17.x || 18.x"
},
"devDependencies": {
"@babel/cli": "^7.24.0",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.24.0",
"@vitejs/plugin-react": "^4.3.0",
"cross-env": "^7.0.3",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"rimraf": "^5.0.0",
"vite": "^5.4.0"
},
"author": "Andrew Olson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/warelab/gramene-githubdocs.git"
},
"bugs": {
"url": "https://github.com/warelab/gramene-githubdocs/issues"
},
"homepage": "https://github.com/warelab/gramene-githubdocs#readme",
"keywords": [
"react-component",
"markdown",
"github",
"docs"
]
}