-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 1.77 KB
/
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
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
{
"name": "google-font-metadata",
"description": "A metadata generator for Google Fonts.",
"version": "6.0.3",
"author": "Ayuhito <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"bin": {
"gfm": "./dist/cli.mjs"
},
"license": "MIT",
"keywords": [
"fontsource",
"font",
"font family",
"google fonts",
"metadata",
"fonts api",
"unicode range"
],
"dependencies": {
"@evan/concurrency": "^0.0.3",
"@octokit/core": "^6.1.2",
"cac": "^6.7.14",
"consola": "^3.3.3",
"deepmerge": "^4.3.1",
"json-stringify-pretty-compact": "^4.0.0",
"linkedom": "^0.18.6",
"pathe": "^1.1.2",
"picocolors": "^1.1.1",
"playwright": "^1.49.1",
"stylis": "^4.3.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/node": "^22.10.2",
"@types/stylis": "^4.2.7",
"c8": "^10.1.3",
"magic-string": "^0.30.17",
"msw": "^2.7.0",
"pkgroll": "^2.6.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"scripts": {
"build": "pkgroll --target=node20",
"dev": "pkgroll --target=node20 --watch",
"clean": "bun exec 'rm -rf ./dist'",
"cli": "bun run ./src/cli.ts",
"test": "vitest",
"test:generate-fixtures": "bun run ./tests/utils/generate-css-fixtures",
"coverage": "vitest --coverage",
"lint": "biome check --fix",
"prepublishOnly": " bunx biome ci && bun run clean && bun run build"
},
"files": ["dist/*", "data/*"],
"homepage": "https://github.com/fontsource/google-font-metadata",
"repository": {
"type": "git",
"url": "git+https://github.com/fontsource/google-font-metadata"
},
"trustedDependencies": ["@biomejs/biome"]
}