-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "astro-font-picker",
"description": "Try out different fonts on your website by putting a font picker in the Astro Dev Toolbar",
"license": "MIT",
"bugs": {
"url": "https://github.com/randombits-dev/astro-font-picker/issues"
},
"homepage": "https://github.com/randombits-dev/astro-font-picker",
"version": "0.2.2",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"astro",
"withastro",
"astro-integration",
"astro-toolbar",
"astro-dev-toolbar",
"toolbar",
"font",
"google",
"google-fonts",
"font-picker"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"fetchFonts": "node scripts/fetchData.js"
},
"dependencies": {
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/node": "^24.3.1",
"astro": "^5.13.6",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"astro": ">4.0.0"
},
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b"
}