@sanity/ui 2.11.7-canary.0 → 2.11.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +41 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/ui",
3
- "version": "2.11.7-canary.0",
3
+ "version": "2.11.7",
4
4
  "keywords": [
5
5
  "sanity",
6
6
  "ui",
@@ -51,6 +51,32 @@
51
51
  "src",
52
52
  "theme.js"
53
53
  ],
54
+ "scripts": {
55
+ "build": "run-s clean pkg:build pkg:check figma:pkg:build",
56
+ "clean": "rimraf .workshop dist",
57
+ "commit": "cz",
58
+ "cypress:dev": "run-p dev cypress:open",
59
+ "cypress:open": "cypress open",
60
+ "cypress:run": "cypress run",
61
+ "dev": "run-p storybook:dev workshop:dev",
62
+ "figma:pkg:build": "cd figma && pnpm build",
63
+ "format": "prettier --write --cache --ignore-unknown .",
64
+ "lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
65
+ "pkg:build": "pkg build --strict",
66
+ "pkg:check": "pkg --strict",
67
+ "prepare": "husky install",
68
+ "prepack": "pnpm build",
69
+ "release": "semantic-release",
70
+ "storybook:build": "storybook build",
71
+ "storybook:dev": "storybook dev -p 6006",
72
+ "test": "jest",
73
+ "test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
74
+ "ts:check": "tsc",
75
+ "watch": "pkg watch --strict",
76
+ "workshop:build": "workshop build",
77
+ "workshop:dev": "workshop dev",
78
+ "workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
79
+ },
54
80
  "commitlint": {
55
81
  "extends": [
56
82
  "@commitlint/config-conventional"
@@ -83,7 +109,7 @@
83
109
  "@sanity/color": "^3.0.6",
84
110
  "@sanity/icons": "^3.5.7",
85
111
  "csstype": "^3.1.3",
86
- "framer-motion": "^11.18.2",
112
+ "framer-motion": "^12.0.6",
87
113
  "react-compiler-runtime": "19.0.0-beta-27714ef-20250124",
88
114
  "react-refractor": "^2.2.0",
89
115
  "use-effect-event": "^1.0.2"
@@ -172,37 +198,25 @@
172
198
  "react-is": "^18 || >=19.0.0-0",
173
199
  "styled-components": "^5.2 || ^6"
174
200
  },
201
+ "packageManager": "pnpm@9.15.4",
175
202
  "engines": {
176
203
  "node": ">=14.0.0"
177
204
  },
178
205
  "publishConfig": {
179
206
  "access": "public"
180
207
  },
208
+ "pnpm": {
209
+ "overrides": {
210
+ "@types/react": "$@types/react",
211
+ "@types/react-dom": "$@types/react-dom",
212
+ "@types/react-is": "$@types/react-is",
213
+ "conventional-changelog-conventionalcommits": ">= 8.0.0",
214
+ "react": "$react",
215
+ "react-dom": "$react-dom",
216
+ "react-is": "$react-is"
217
+ }
218
+ },
181
219
  "esm.sh": {
182
220
  "bundle": false
183
- },
184
- "scripts": {
185
- "build": "run-s clean pkg:build pkg:check figma:pkg:build",
186
- "clean": "rimraf .workshop dist",
187
- "commit": "cz",
188
- "cypress:dev": "run-p dev cypress:open",
189
- "cypress:open": "cypress open",
190
- "cypress:run": "cypress run",
191
- "dev": "run-p storybook:dev workshop:dev",
192
- "figma:pkg:build": "cd figma && pnpm build",
193
- "format": "prettier --write --cache --ignore-unknown .",
194
- "lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
195
- "pkg:build": "pkg build --strict",
196
- "pkg:check": "pkg --strict",
197
- "release": "semantic-release",
198
- "storybook:build": "storybook build",
199
- "storybook:dev": "storybook dev -p 6006",
200
- "test": "jest",
201
- "test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
202
- "ts:check": "tsc",
203
- "watch": "pkg watch --strict",
204
- "workshop:build": "workshop build",
205
- "workshop:dev": "workshop dev",
206
- "workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
207
221
  }
208
- }
222
+ }