-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "@thi.ng/font",
"version": "0.0.8",
"module": "src/index.ts",
"type": "module",
"license": "Apache-2.0",
"author": "Karsten Schmidt <[email protected]>",
"scripts": {
"clean": "rm -rf build/*.*",
"build": "mkdir -p build && bun src/index.ts",
"build:all": "yarn build",
"build:banners": "bun src/banners.ts font/thing-regular-0.0.8.otf",
"postprocess": "/Applications/FontForge.app/Contents/MacOS/FFPython src/postprocess.py",
"debug": "mkdir -p build && bun src/debug-grid.ts"
},
"dependencies": {
"@thi.ng/file-io": "^2.1.11",
"@thi.ng/geom": "^8.1.4",
"@thi.ng/transducers": "^9.2.0",
"fast-glob": "^3.3.2",
"opentype.js": "^1.3.4"
},
"devDependencies": {
"@types/node": "^22.4.1",
"@types/opentype.js": "1.3.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"font": {
"familyName": "thi.ng",
"styleName": "Regular",
"designer": "Karsten Schmidt",
"designerURL": "http://thi.ng",
"copyright": "(c) 2020 Karsten Schmidt",
"license": "SIL Open Font License 1.1",
"licenseURL": "https://opensource.org/licenses/OFL-1.1"
}
}