-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "unglyph",
"version": "0.0.3",
"description": "Unified font glyph manipulation library with simple API for parsing, creating, and modifying fonts",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"prepack": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bysages/typography.git"
},
"keywords": [
"font",
"glyph",
"typography",
"opentype",
"truetype",
"svg",
"woff",
"woff2",
"font-design",
"font-creation",
"font-parsing",
"font-manipulation",
"font-generation",
"typescript",
"vector-graphics",
"path-data",
"font-editor",
"icon-font",
"variable-font",
"font-toolkit",
"font-engine"
],
"author": {
"name": "By Sages",
"email": "contact@bysages.com",
"url": "https://www.bysages.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bysages/typography/issues"
},
"homepage": "https://github.com/bysages/typography#readme",
"dependencies": {
"fontkit": "2.0.4",
"opentype.js": "1.3.4",
"undio": "0.2.0"
},
"devDependencies": {
"@napi-rs/canvas": "^0.1.82",
"@types/fontkit": "2.0.9",
"@types/opentype.js": "1.3.10"
},
"peerDependencies": {
"@napi-rs/canvas": "^0.1.82"
},
"peerDependenciesMeta": {
"@napi-rs/canvas": {
"optional": true
}
}
}