Files
prettier-plugin-openapi/package.json

47 lines
936 B
JSON

{
"name": "prettier-plugin-openapi",
"version": "1.0.0",
"description": "A Prettier plugin for formatting OpenAPI/Swagger JSON and YAML files",
"author": {
"name": "Luke Hagar",
"email": "lukeslakemail@gmail.com",
"url": "https://LukeHagar.com/"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"keywords": [
"prettier",
"prettier-plugin",
"openapi",
"swagger",
"yaml",
"json",
"formatting"
],
"peerDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"js-yaml": "^4.1.0",
"@types/js-yaml": "^4.0.0"
}
}