-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "prettier-plugin-pkg",
"version": "0.22.1",
"type": "module",
"description": "An opinionated package.json formatter plugin for Prettier",
"repository": "git+https://github.com/un-ts/prettier.git",
"homepage": "https://github.com/un-ts/prettier/tree/master/packages/pkg",
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
"funding": "https://opencollective.com/unts",
"license": "MPL-2.0",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"main": "./lib/index.cjs",
"types": "./index.d.cts",
"module": "./lib/index.js",
"exports": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./lib/index.cjs"
}
},
"files": [
"index.d.cts",
"lib"
],
"keywords": [
"package",
"package.json",
"pkg",
"plugin",
"prettier",
"prettier-plugin"
],
"peerDependencies": {
"prettier": "^3.0.3"
},
"publishConfig": {
"access": "public"
}
}