-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
41 lines (41 loc) · 974 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
37
38
39
40
41
{
"name": "prettier-plugin-autocorrect",
"version": "0.4.1",
"type": "module",
"description": "An opinionated AutoCorrect plugin for Prettier",
"repository": "[email protected]/un-ts/prettier.git",
"homepage": "https://github.com/un-ts/prettier/tree/master/packages/autocorrect",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"autocorrect",
"copywriting",
"spaces",
"punctuations",
"CJK"
],
"peerDependencies": {
"prettier": "^3.0.3"
},
"dependencies": {
"autocorrect-node": "^2.9.0"
},
"publishConfig": {
"access": "public"
}
}