-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 898 Bytes
/
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
{
"name": "textlint-plugin-jsx",
"version": "1.2.0",
"description": "JSX and TSX support for textlint. ",
"keywords": [
"textlintplugin"
],
"repository": "https://github.com/hata6502/textlint-plugin-jsx",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hata6502"
},
"license": "MIT",
"author": "Tomoyuki Hata <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"fix": "prettier --write .",
"lint": "prettier --check . && tsc --noEmit",
"test": "textlint-scripts test"
},
"dependencies": {
"@textlint/ast-node-types": "^4.2.5"
},
"devDependencies": {
"@textlint/types": "^1.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^14.0.22",
"prettier": "^2.0.5",
"textlint-scripts": "^13.3.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"typescript": "*"
}
}