-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@adam-rocska/font-anatomy",
"version": "1.1.3",
"description": "A collection of tools for working with font anatomy in Typescript.",
"keywords": [
"font",
"anatomy",
"opentype",
"typography",
"typeface",
"fontface",
"font-family",
"typescript",
"ts",
"types",
"js",
"javascript",
"node",
"nodejs",
"font-metrics",
"font-tools",
"font-processing",
"font-format",
"font-rendering",
"font-utils",
"typography-tools",
"type-design",
"font-management",
"font-analysis"
],
"author": {
"name": "Ádám László Rocska",
"url": "https://adam-rocska.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adam-rocska/font-anatomy-typescript.git"
},
"bugs": {
"url": "https://github.com/adam-rocska/font-anatomy-typescript/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/adam-rocska"
}
],
"scripts": {
"clean": "rimraf dist",
"build": "bunchee && chmod +x dist/bin/font-anatomy.js",
"test": "jest --env node",
"check": "pnpm eslint && pnpm attw --pack"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.1",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/opentype.js": "^1.3.8",
"@types/wawoff2": "^1.0.2",
"@types/yargs": "^17.0.33",
"bunchee": "^5.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "15.0.3",
"jest": "^29.7.0",
"pnpm": "^9.9.0",
"rimraf": "^6.0.1",
"type-fest": "^4.26.0",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
},
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"bin": {
"font-anatomy": "./dist/bin/font-anatomy.js"
},
"dependencies": {
"@adam-rocska/markdown-table": "^1.0.2",
"opentype.js": "^1.3.4",
"wawoff2": "^2.0.1"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^@adam-rocska/font-anatomy$": "<rootDir>/src/index.ts",
"!(.*)": "<rootDir>/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"testTimeout": 1000
},
"packageManager": "pnpm@9.4.0"
}