-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "textlint-rule-table-align",
"version": "1.0.0",
"description": "textlint rule that check table align.",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/ohakutsu/textlint-rule-table-align",
"bugs": {
"url": "https://github.com/ohakutsu/textlint-rule-table-align/issues"
},
"license": "MIT",
"author": {
"name": "ohakutsu",
"url": "https://twitter.com/ohakutsu"
},
"files": [
"lib/"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ohakutsu/textlint-rule-table-align.git"
},
"scripts": {
"build": "textlint-scripts build",
"lint": "prettier --check .",
"lint:fix": "prettier --list-different --write .",
"prepublish": "pnpm run build",
"test": "textlint-scripts test"
},
"devDependencies": {
"@textlint/types": "^14.8.4",
"prettier": "^3.8.1",
"textlint-scripts": "^14.8.4",
"textlint-tester": "^14.8.4",
"typescript": "^5.9.3"
},
"peerDependencies": {
"textlint": ">=14.8.4"
},
"engines": {
"node": ">=18.14.0"
},
"packageManager": "pnpm@9.15.9"
}