-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "segment-font",
"version": "1.0.0",
"description": "Segment — a custom display/icon font.",
"type": "module",
"main": "dist/segment.css",
"style": "dist/segment.css",
"exports": {
".": {
"style": "./dist/segment.css",
"default": "./dist/segment.css"
},
"./css": "./dist/segment.css",
"./ttf": "./dist/segment.ttf",
"./woff": "./dist/segment.woff",
"./woff2": "./dist/segment.woff2",
"./svg": "./dist/segment.svg",
"./glyph-map": "./dist/glyph-map.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "node scripts/prepare.mjs",
"build": "node scripts/build.mjs",
"clean": "rm -rf dist build",
"demo": "npx --yes http-server . -p 8080 -c-1 -o /demo/",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"font",
"icon-font",
"segment",
"webfont",
"display-font"
],
"author": "",
"license": "OFL-1.1",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"globby": "^14.0.2",
"oslllo-svg-fixer": "^6.0.1",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"ttf2woff": "^3.0.0",
"wawoff2": "^2.0.1"
}
}