-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 938 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 938 Bytes
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
{
"name": "google-fonts-scripts",
"version": "0.0.1",
"description": "Generates a minimal data format of google typefaces, fonts, and creates SVG previews",
"main": "src/index.ts",
"author": "Stephen Haney",
"license": "MIT",
"scripts": {
"typegen": "TYPEGEN=true bun ./src/generate-types.ts",
"metadata": "bun run src/generate-metadata.ts",
"png": "bun run src/generate-png.ts",
"svg": "bun run src/generate-svg.ts",
"packing": "bun run src/packing.ts",
"all": "bun run metadata && bun run png && bun run packing"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.7.9"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"dependencies": {
"makerjs": "^0.18.1",
"opentype.js": "^1.3.4",
"playwright": "^1.48.2",
"potpack": "2.0.0",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"wrangler": "^3.83.0",
"quicktype-core": "^23.2.6"
}
}