forked from shytikov/pragmasevka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "@aptre/pragmasevka",
"version": "1.0.1",
"description": "Self-host the Pragmasevka font.",
"author": "Renzhi Li (aka. Belleve Invis, belleve@typeof.net)",
"license": "OFL-1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/aperturerobotics/pragmasevka.git"
},
"homepage": "https://github.com/aperturerobotics/pragmasevka",
"keywords": [
"font",
"font family",
"pragmasevka",
"pragmatapro",
"iosevka",
"monospace",
"css",
"web",
"typeface"
],
"scripts": {
"release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version",
"release:commit": "git reset && git add package.json && git commit -s -m \"release: v$npm_package_version\" && git tag v$npm_package_version",
"release:publish": "git push && git push --tags && npm publish",
"release": "npm run release:version && npm run release:commit"
},
"main": "font.css",
"exports": {
".": {
"default": "./font.css"
},
"./font.css": "./font.css",
"./fonts/*": "./fonts/*",
"./package.json": "./package.json"
},
"files": [
"fonts/",
"font.css",
"LICENSE.md"
]
}