-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "git-analyze",
"version": "1.0.1",
"description": "A tool for analyzing Git repositories ",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup src/index.ts --format esm --watch",
"build": "tsup src/index.ts --format esm --dts"
},
"dependencies": {
"crypto": "^1.0.1",
"glob": "^11.0.0",
"simple-git": "^3.27.0",
"tree-sitter": "^0.22.4",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.23.6",
"tree-sitter-typescript": "^0.23.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/node": "^22.13.8",
"tsup": "^8.3.5",
"tsx": "^4.19.2"
},
"author": "Gijela",
"keywords": [
"git",
"analysis",
"ingest",
"code review"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/Gijela/git-analyze.git"
},
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Gijela/git-analyze/issues"
},
"homepage": "/~https://github.com/Gijela/git-analyze#readme"
}