-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.02 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.02 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
{
"name": "harfbuzzjs",
"version": "0.10.3",
"description": "Minimal version of HarfBuzz for JavaScript use",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "make",
"test": "make test"
},
"keywords": [
"harfbuzz",
"opentype",
"truetype",
"ttf",
"otf",
"graphics",
"complex scripts",
"typography",
"font rendering",
"font",
"fonts",
"emoji"
],
"repository": {
"type": "git",
"url": "git+https://github.com/harfbuzz/harfbuzzjs.git"
},
"author": "Ebrahim Byagowi <ebrahim@gnu.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harfbuzz/harfbuzzjs/issues"
},
"homepage": "https://github.com/harfbuzz/harfbuzzjs#readme",
"devDependencies": {
"@types/emscripten": "^1.41.5",
"@types/node": "^25.5.0",
"vitest": "^4.1.2",
"tsdown": "^0.21.7",
"typedoc": "^0.28.18",
"typescript": "^6.0.2"
}
}