Skip to content

Commit

Permalink
chore: sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloashmore committed Nov 28, 2024
1 parent d965eeb commit 22c377b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "@prismicio/react",
"version": "2.9.1",
"description": "React components and hooks to fetch and present Prismic content",
"type": "module",
"keywords": [
"typescript",
"prismic",
Expand All @@ -15,6 +14,7 @@
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand All @@ -38,16 +38,19 @@
"dev": "vite build --watch",
"format": "prettier --write .",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"types": "tsc --noEmit",
"prepare": "npm run build",
"release": "npm run build && npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:alpha": "npm run build && npm run test && standard-version --release-as minor --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as minor --prerelease alpha --dry-run",
"release:dry": "standard-version --dry-run",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size"
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch"
},
"dependencies": {
"esm-env": "^1.1.4"
},
"devDependencies": {
"@prismicio/client": "^7.12.0",
Expand Down Expand Up @@ -90,8 +93,5 @@
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"esm-env": "^1.1.4"
}
}

0 comments on commit 22c377b

Please sign in to comment.