chore: sort package.json keys of richtext-slate package

This commit is contained in:
Alessio Gravili
2023-09-19 12:02:42 +02:00
parent c356b96913
commit 6338471287

View File

@@ -1,7 +1,18 @@
{ {
"name": "@payloadcms/richtext-slate", "name": "@payloadcms/richtext-slate",
"version": "0.0.1",
"description": "The officially supported Slate richtext adapter for Payload", "description": "The officially supported Slate richtext adapter for Payload",
"repository": "https://github.com/payloadcms/payload",
"license": "MIT",
"homepage": "https://payloadcms.com",
"author": "Payload CMS, Inc.", "author": "Payload CMS, Inc.",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "pnpm build:swc && pnpm build:types",
"build:swc": "swc ./src -d ./dist --config-file .swcrc",
"build:types": "tsc --emitDeclarationOnly --outDir dist"
},
"dependencies": { "dependencies": {
"@faceless-ui/modal": "2.0.1", "@faceless-ui/modal": "2.0.1",
"i18next": "22.5.1", "i18next": "22.5.1",
@@ -25,20 +36,10 @@
"types": "./src/index.ts" "types": "./src/index.ts"
} }
}, },
"license": "MIT",
"main": "./src/index.ts",
"publishConfig": { "publishConfig": {
"exports": null, "exports": null,
"main": "./dist/index.js", "main": "./dist/index.js",
"registry": "https://registry.npmjs.org/", "registry": "https://registry.npmjs.org/",
"types": "./dist/index.d.ts" "types": "./dist/index.d.ts"
}, }
"repository": "https://github.com/payloadcms/payload",
"scripts": {
"build": "pnpm build:swc && pnpm build:types",
"build:swc": "swc ./src -d ./dist --config-file .swcrc",
"build:types": "tsc --emitDeclarationOnly --outDir dist"
},
"types": "./src/index.ts",
"version": "0.0.1"
} }