-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 932 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
40
41
42
43
44
{
"name": "@third774/google-font",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"description": "A web component for loading fonts from Google Fonts",
"repository": {
"type": "git",
"url": "https://github.com/third774/google-fonts"
},
"keywords": [
"web-components",
"google-fonts",
"google-font",
"font",
"fonts",
"web",
"component",
"components",
"webcomponent",
"webcomponents",
"google",
"googlefonts",
"googlefont"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsup",
"clean": "npx trash-cli dist",
"dev": "vite",
"prepublishOnly": "npm run build"
},
"author": "Kevin Kipp",
"license": "MIT",
"dependencies": {
"tiny-invariant": "^1.3.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.6"
}
}