-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 945 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
35
36
37
38
{
"name": "readmetrics",
"version": "1.0.0",
"description": "ReadMetrics is a github metrics generator for your profile README.md",
"author": {
"name": "Gaston Chenet",
"email": "[email protected]",
"url": "https://gastonchenet.fr"
},
"type": "module",
"license": "MIT",
"main": "./src/index.ts",
"scripts": {
"start": "bun ./src/index.ts",
"test": "bun test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gastonchenet/readmetrics.git"
},
"homepage": "https://github.com/gastonchenet/readmetrics#readme",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/swagger": "^1.1.5",
"elysia": "^1.1.22",
"graphql-tag": "^2.12.6",
"moment": "^2.30.1",
"octokit": "^4.0.2",
"sass": "^1.80.4",
"yaml": "^2.6.0"
}
}