diff --git a/package.json b/package.json index 36f5f53..27546a0 100644 --- a/package.json +++ b/package.json @@ -14,24 +14,30 @@ "bugs": { "url": "https://github.com/portabletext/toolkit/issues" }, + "license": "MIT", + "author": "Sanity.io ", "repository": { "type": "git", "url": "git+ssh://git@github.com/portabletext/toolkit.git" }, - "author": "Sanity.io ", - "license": "MIT", - "sideEffects": false, + "files": [ + "dist" + ], "type": "module", + "sideEffects": false, "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", "exports": { ".": "./src/index.ts", "./package.json": "./package.json" }, - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "files": [ - "dist" - ], + "publishConfig": { + "exports": { + ".": "./dist/index.js", + "./package.json": "./package.json" + } + }, "scripts": { "build": "tsdown", "coverage": "vitest run --coverage", @@ -60,14 +66,8 @@ "typescript": "5.9.3", "vitest": "^4.0.16" }, - "packageManager": "pnpm@10.27.0", "engines": { "node": ">=20.19 <22 || >=22.12" }, - "publishConfig": { - "exports": { - ".": "./dist/index.js", - "./package.json": "./package.json" - } - } + "packageManager": "pnpm@10.27.0" }