-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.17 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": "@germondai/icons",
"version": "1.0.0",
"description": "Drop-in tech icon strips for GitHub profiles, READMEs and portfolios - styled via URL params",
"module": "src/index.ts",
"main": "src/index.ts",
"type": "module",
"author": "germondai <germondai@gmail.com> (https://github.com/germondai)",
"license": "MIT",
"homepage": "https://icons.germondai.com",
"repository": {
"type": "git",
"url": "https://github.com/germondai/icons.git"
},
"bugs": {
"url": "https://github.com/germondai/icons/issues"
},
"keywords": [
"svg",
"api",
"typescript",
"icons",
"bun",
"elysia"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome lint",
"fmt": "biome format --write .",
"icon:gen-mono": "bun scripts/gen-mono.ts",
"icon:optimize": "bun scripts/optimize-assets.ts"
},
"dependencies": {
"@elysiajs/cors": "^1.4.2",
"@resvg/resvg-js": "^2.6.2",
"elysia": "^1.4.28"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "^1.3.14",
"svgo": "^4.0.1"
}
}