-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.07 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.07 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
{
"name": "prettier-plugin-toml",
"version": "2.0.6",
"type": "module",
"description": "An opinionated `toml` formatter plugin for Prettier",
"repository": "git+https://github.com/un-ts/prettier.git",
"homepage": "https://github.com/un-ts/prettier/tree/master/packages/toml",
"author": "Ray (https://mk1.io) <i@mk1.io>",
"maintainers": [
"JounQin <admin@1stg.me> (https://www.1stG.me)"
],
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": ">=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": [
"toml",
"plugin",
"prettier",
"prettier-plugin"
],
"peerDependencies": {
"prettier": "^3.0.3"
},
"dependencies": {
"@taplo/lib": "^0.5.0"
},
"publishConfig": {
"access": "public"
}
}