-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "keyfont",
"version": "1.0.0",
"description": "Open-source, browser-based font conversion toolkit",
"private": false,
"scripts": {
"vendor:woff2": "esbuild src/fonteditor-woff2-wrapper.js --bundle --platform=browser --format=iife --loader:.wasm=binary --outfile=src/vendor/fonteditor-woff2.js",
"test": "node --check src/main.js && node --check src/keyfont-ui.js && node --check src/keyfont-engine.js && node --check src/keyfont-mini-converter.js && node --check src/ttf.js && node --check src/cff.js && node --check src/type1.js"
},
"keywords": [
"font",
"converter",
"woff2",
"opentype",
"truetype"
],
"author": "KeyFont contributors",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"esbuild": "^0.28.1",
"fonteditor-core": "^2.6.3"
}
}