-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@shiinasaku/github-card",
"version": "4.0.0",
"description": "Beautiful GitHub stats SVG cards. Embed in README, use as API, or render programmatically.",
"keywords": [
"badge",
"bun",
"elysia",
"github",
"github-card",
"github-stats",
"profile-card",
"readme",
"stats",
"svg"
],
"homepage": "https://card.shiina.xyz",
"license": "MIT",
"author": {
"name": "saku shiina",
"email": "saku@shiina.xyz",
"url": "https://www.shiina.xyz"
},
"repository": {
"type": "git",
"url": "https://github.com/ShiinaSaku/Github-Card.git"
},
"files": [
"src",
"fonts",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./src/lib.ts",
"module": "./src/lib.ts",
"types": "./src/lib.ts",
"exports": {
".": {
"types": "./src/lib.ts",
"import": "./src/lib.ts"
},
"./server": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"dependencies": {
"@elysia/cors": "^1.4.2",
"@elysia/openapi": "^1.4.15",
"@elysia/server-timing": "^1.4.1",
"elysia": "^1.4.28"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.0",
"@types/bun": "^1.3.14",
"oxfmt": "0.55.0",
"oxlint": "1.70.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"packageManager": "bun@1.3.14"
}