-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
47
48
49
50
51
52
53
{
"name": "developer-avatar-generator",
"version": "1.0.1",
"description": "Generate deterministic developer avatars as SVG/JSON via CLI, API, and web UI.",
"type": "module",
"main": "dist/index.js",
"bin": {
"dev-avatar": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/server.ts",
"cli": "tsx src/cli.ts",
"test": "vitest run",
"lint": "tsc --noEmit",
"start": "node dist/server.js",
"preview": "npm run build && npm run start"
},
"keywords": [
"avatar",
"svg",
"developer",
"generator",
"typescript",
"deterministic"
],
"author": "Nikhil Bheda",
"license": "MIT",
"homepage": "https://github.com/bhedanikhilkumar-code/Developer-Avatar-Generator",
"repository": {
"type": "git",
"url": "https://github.com/bhedanikhilkumar-code/Developer-Avatar-Generator.git"
},
"dependencies": {
"express": "^4.19.2",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.12.0",
"@types/qrcode": "^1.5.5",
"tsx": "^4.19.2",
"typescript": "^5.8.2",
"vitest": "^2.1.8"
}
}