-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "@neoskop/ligscrib",
"version": "2.1.0",
"description": "Ligature icon font generator",
"keywords": [
"icon",
"icons",
"ligature",
"ligatures",
"font",
"fonts",
"generator",
"writer",
"converter"
],
"bin": {
"ligscrib": "./bin/ligscrib.js"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "git@github.com:neoskop/ligscrib.git",
"author": "Mark Wecke <wecke@neoskop.de>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "npm run build && jest",
"publish-next": "npm run build && npm publish --tag next",
"publish-latest-only": "npm run build && npm publish",
"publish-latest": "npm run publish-latest-only && npm dist-tag add @neoskop/ligscrib@`jq '.version' package.json -r` next"
},
"devDependencies": {
"@types/fontkit": "2.0.7",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
"@types/stream-buffers": "3.0.7",
"@types/svgicons2svgfont": "10.0.5",
"@types/ttf2woff": "2.0.4",
"@types/ttf2woff2": "2.0.2",
"@types/yargs": "17.0.32",
"fontkit": "2.0.2",
"jest": "29.7.0",
"ts-jest": "29.2.2",
"tslib": "2.6.3",
"typescript": "5.5.3"
},
"dependencies": {
"colors": "^1.4.0",
"glob": "^11.0.0",
"stream-buffers": "^3.0.3",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"ttf2woff": "^3.0.0",
"ttf2woff2": "^5.0.0",
"yargs": "^17.7.2"
}
}