-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "gria",
"version": "0.0.0",
"description": "GRIA - GitHub Repo Image API for GitHub Profiles",
"main": "dist/api.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist/*",
"prebuild": "npm run clean",
"build": "esbuild src/api.ts --bundle --platform=node --external:canvas --loader:.node=file --outfile=dist/api.cjs",
"build:docker": "docker compose build gria",
"publish:docker": "docker push ghcr.io/ryan-willis/gria:latest",
"start": "npx tsx src/api.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryan-willis/gria.git"
},
"keywords": [
"github",
"repo",
"image",
"api",
"profile"
],
"author": "Ryan Willis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryan-willis/gria/issues"
},
"homepage": "https://github.com/ryan-willis/gria#readme",
"devDependencies": {
"@types/node": "^20.12.11",
"esbuild": "^0.21.1",
"tsx": "^4.10.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@fastify/caching": "^8.3.0",
"canvas": "^2.11.2",
"fastify": "^4.27.0",
"simple-icons": "^11.14.0"
}
}