-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 Bytes
/
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
{
"name": "none",
"version": "0.0.0",
"description": "Colorful SVG generation",
"type": "module",
"scripts": {
"dev": "tsup --env.NODE_ENV development",
"build": "tsup --env.NODE_ENV production",
"test": "tsup --env.NODE_ENV production && cd dist && deno test -A test.js",
"preview": "cd dist && deno run -A main.js",
"script:clean": "node scripts/clean.js",
"setup-icons": "cd src/ui/components/icon && tsx lucide/setup.ts && tsx simple/setup.ts"
},
"devDependencies": {
"@types/node": "20.17.10",
"hono": "4.6.17",
"satori": "0.12.1",
"string-ts": "2.2.0",
"terser": "5.37.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.3",
"valibot": "1.0.0-beta.12",
"yoga-wasm-web": "0.3.3"
},
"peerDependencies": {
"lucide": "0.473.0",
"simple-icons": "14.3.0"
},
"peerDependenciesMeta": {
"lucide": {
"optional": true
},
"simple-icons": {
"optional": true
}
},
"packageManager": "[email protected]"
}