-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "github-folder-tree",
"version": "1.2.1",
"description": "github-folder-tree is a React custom hook that allows you to fetch and process the contents of a GitHub folder. It retrieves information about the files and subfolders in the specified folder, including their names, file types, download URLs, SHA hashes, sizes, and paths.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && prettier --write src/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sauravhathi/github-folder-tree.git"
},
"keywords": [
"github",
"folder",
"tree",
"repository",
"github-api",
"contents",
"fetch",
"download",
"npm",
"package",
"git-api"
],
"author": "Saurav Hathi",
"license": "MIT",
"bugs": {
"url": "https://github.com/sauravhathi/github-folder-tree/issues/new/choose"
},
"homepage": "https://github-folder-tree.vercel.app/",
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/node": "^20.1.4",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"axios": "^1.4.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.8.8",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"axios": "^1.4.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1"
}
}