-
-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.48 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.48 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "textlint",
"version": "15.6.0",
"description": "The pluggable linting tool for natural language.",
"keywords": [
"AST",
"lint",
"linting",
"markdown",
"pluggable",
"text",
"textlint",
"nlp"
],
"homepage": "https://github.com/textlint/textlint/",
"bugs": {
"url": "https://github.com/textlint/textlint/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/textlint.git"
},
"license": "MIT",
"author": "azu",
"type": "commonjs",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"bin": {
"textlint": "./bin/textlint.js"
},
"directories": {
"test": "test/"
},
"files": [
"bin/",
"lib/",
"module/",
"src/",
"!*.tsbuildinfo"
],
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib/",
"prepack": "npm run build",
"test": "vitest run",
"updateSnapshot": "UPDATE_SNAPSHOT=true vitest run",
"test:watch": "vitest watch",
"watch": "tsc -b --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "catalog:",
"@textlint/ast-node-types": "workspace:*",
"@textlint/ast-traverse": "workspace:*",
"@textlint/config-loader": "workspace:*",
"@textlint/feature-flag": "workspace:*",
"@textlint/fixer-formatter": "workspace:*",
"@textlint/kernel": "workspace:*",
"@textlint/linter-formatter": "workspace:*",
"@textlint/module-interop": "workspace:*",
"@textlint/resolver": "workspace:*",
"@textlint/textlint-plugin-markdown": "workspace:*",
"@textlint/textlint-plugin-text": "workspace:*",
"@textlint/types": "workspace:*",
"@textlint/utils": "workspace:*",
"debug": "catalog:",
"file-entry-cache": "catalog:",
"glob": "catalog:",
"md5": "catalog:",
"optionator": "catalog:",
"path-to-glob-pattern": "catalog:",
"rc-config-loader": "catalog:",
"read-package-up": "catalog:",
"structured-source": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@textlint/legacy-textlint-core": "workspace:*",
"@types/debug": "catalog:",
"@types/node": "catalog:",
"rimraf": "catalog:",
"textlint-plugin-html": "catalog:",
"textlint-rule-helper": "catalog:",
"textlint-rule-no-todo": "catalog:",
"textlint-rule-preset-ja-spacing": "catalog:",
"textlint-rule-preset-jtf-style": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}