-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.25 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.25 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
{
"name": "@web-alchemy/fonttools",
"version": "1.4.0",
"main": "src/main.js",
"bin": {
"fonttools": "bin/fonttools",
"pyftsubset": "bin/pyftsubset",
"pyftmerge": "bin/pyftmerge",
"ttx": "bin/ttx"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "npm test",
"test": "echo \"No test specified\" && exit 0",
"install-python-packages": "node src/scripts/install-python-packages.js"
},
"dependencies": {
"pyodide": "0.29.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"python_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/web-alchemy/fonttools.git"
},
"keywords": [
"fonttools",
"font",
"fonts",
"webfont",
"web-font",
"typography",
"subset",
"pyodide",
"python",
"optimization",
"convert",
"opentype",
"truetype",
"ttf",
"woff",
"woff2",
"wasm",
"webassembly",
"cli",
"command-line"
],
"bugs": {
"url": "https://github.com/web-alchemy/fonttools/issues"
},
"homepage": "https://github.com/web-alchemy/fonttools"
}