-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 983 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 983 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
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
{
"name": "typograf-cli",
"description": "CLI for Typograf",
"version": "6.2.0",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/typograf/typograf-cli"
},
"bin": {
"typograf": "./bin/cli.mjs"
},
"homepage": "https://github.com/typograf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/typograf/typograf-cli.git"
},
"keywords": [
"cli",
"typo",
"text",
"typograf",
"typographer",
"typography"
],
"engines": {
"node": "^12.20.0 || >=14"
},
"files": [
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE.md",
"typograf.json"
],
"dependencies": {
"commander": "^9.5.0",
"picocolors": "^1.1.1",
"typograf": "^7.6.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "^10.0.3",
"globals": "17.4.0"
},
"scripts": {
"eslint": "eslint .",
"test": "npm run eslint"
}
}