You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

prettier-plugin-toml

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prettier-plugin-toml - npm Package Compare versions

Comparing version
2.0.3
to
2.0.4
+3
index.d.cts
import toml from './lib/index.js'
export = toml
+1
-1

@@ -1,2 +0,2 @@

import { SupportLanguage } from 'prettier';
import type { SupportLanguage } from 'prettier';
export declare const languages: SupportLanguage[];
{
"name": "prettier-plugin-toml",
"version": "2.0.3",
"version": "2.0.4",
"type": "module",
"description": "An opinionated `toml` formatter plugin for Prettier",
"repository": "git@github.com/un-ts/prettier.git",
"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>",
"contributors": [
"JounQin (https://www.1stG.me) <admin@1stg.me>"
"maintainers": [
"JounQin <admin@1stg.me> (https://www.1stG.me)"
],

@@ -18,10 +18,20 @@ "funding": "https://opencollective.com/unts",

"main": "./lib/index.cjs",
"types": "./index.d.cts",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"module-sync": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./lib/index.cjs"
}
},
"types": "./lib/index.d.ts",
"files": [
"index.d.cts",
"lib"

@@ -39,3 +49,3 @@ ],

"dependencies": {
"@taplo/lib": "^0.4.0-alpha.2"
"@taplo/lib": "^0.5.0"
},

@@ -45,2 +55,2 @@ "publishConfig": {

}
}
}