-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d965eeb
commit 22c377b
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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", | ||
|
@@ -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", | ||
|
@@ -90,8 +93,5 @@ | |
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"dependencies": { | ||
"esm-env": "^1.1.4" | ||
} | ||
} |