@sanity/ui 2.8.13-canary.0 → 2.8.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/ui",
3
- "version": "2.8.13-canary.0",
3
+ "version": "2.8.13",
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"
@@ -84,7 +110,6 @@
84
110
  "@sanity/icons": "^3.4.0",
85
111
  "csstype": "^3.1.3",
86
112
  "framer-motion": "11.0.8",
87
- "react-compiler-runtime": "19.0.0-beta-6fc168f-20241025",
88
113
  "react-refractor": "^2.2.0",
89
114
  "use-effect-event": "^1.0.2"
90
115
  },
@@ -173,37 +198,19 @@
173
198
  "react-is": "^18",
174
199
  "styled-components": "^5.2 || ^6"
175
200
  },
201
+ "packageManager": "pnpm@9.12.3",
176
202
  "engines": {
177
203
  "node": ">=14.0.0"
178
204
  },
179
205
  "publishConfig": {
180
206
  "access": "public"
181
207
  },
208
+ "pnpm": {
209
+ "overrides": {
210
+ "conventional-changelog-conventionalcommits": ">= 8.0.0"
211
+ }
212
+ },
182
213
  "esm.sh": {
183
214
  "bundle": false
184
- },
185
- "scripts": {
186
- "build": "run-s clean pkg:build pkg:check figma:pkg:build",
187
- "clean": "rimraf .workshop dist",
188
- "commit": "cz",
189
- "cypress:dev": "run-p dev cypress:open",
190
- "cypress:open": "cypress open",
191
- "cypress:run": "cypress run",
192
- "dev": "run-p storybook:dev workshop:dev",
193
- "figma:pkg:build": "cd figma && pnpm build",
194
- "format": "prettier --write --cache --ignore-unknown .",
195
- "lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
196
- "pkg:build": "pkg build --strict",
197
- "pkg:check": "pkg --strict",
198
- "release": "semantic-release",
199
- "storybook:build": "storybook build",
200
- "storybook:dev": "storybook dev -p 6006",
201
- "test": "jest",
202
- "test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
203
- "ts:check": "tsc",
204
- "watch": "pkg watch --strict",
205
- "workshop:build": "workshop build",
206
- "workshop:dev": "workshop dev",
207
- "workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
208
215
  }
209
- }
216
+ }