-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "@drovp/font-generator",
"version": "3.0.4",
"description": "Generate ttf, woff, woff2, eot, and svg fonts with optional subsetting.",
"main": "dist/index.js",
"homepage": "https://github.com/drovp/font-generator",
"bugs": "https://github.com/drovp/font-generator/issues",
"repository": "github:drovp/font-generator",
"keywords": [
"drovpplugin",
"font",
"fonts",
"ttf",
"woff",
"woff2",
"eot",
"svg",
"oft"
],
"author": "tomasklaen",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "npm-run-all clean watch",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@drovp/types": "^3.0.1",
"code-points": "^1.1.3",
"fonteditor-core": "^2.1.8"
}
}