-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "github-profile-card",
"version": "0.1.3",
"description": "Github Profile Card is a Node.js application that generates a visually appealing profile card for GitHub users. It fetches user data from the GitHub API and displays it in a card format, making it easy to share and showcase GitHub profiles.",
"homepage": "https://github.com/nayandas69/github-profile-card",
"license": "MIT",
"author": {
"name": "Nayan Das",
"url": "https://github.com/nayandas69"
},
"repository": {
"type": "git",
"url": "https://github.com/nayandas69/github-profile-card.git"
},
"type": "module",
"packageManager": "pnpm@10.29.2",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "tsx watch --env-file=.env src/server.ts",
"start": "node --env-file=.env --import tsx src/server.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ __tests__/",
"lint:fix": "eslint src/ __tests__/ --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@hono/node-server": "^1.19.11",
"@upstash/redis": "^1.36.3",
"hono": "^4.12.5"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "4.0.18",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}