@sanity/ui 3.1.12-canary.1 → 3.1.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.
Files changed (2) hide show
  1. package/LICENSE +1 -1
  2. package/package.json +40 -26
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Sanity.io
3
+ Copyright (c) 2026 Sanity.io
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/ui",
3
- "version": "3.1.12-canary.1",
3
+ "version": "3.1.13",
4
4
  "keywords": [
5
5
  "sanity",
6
6
  "ui",
@@ -60,6 +60,32 @@
60
60
  "exports",
61
61
  "src"
62
62
  ],
63
+ "scripts": {
64
+ "build": "run-s clean pkg:build pkg:check figma:pkg:build",
65
+ "clean": "rimraf .workshop dist",
66
+ "commit": "cz",
67
+ "cypress:dev": "run-p dev cypress:open",
68
+ "cypress:open": "cypress open",
69
+ "cypress:run": "cypress run",
70
+ "dev": "run-p storybook:dev workshop:dev",
71
+ "figma:pkg:build": "cd figma && pnpm build",
72
+ "format": "prettier --write --cache --ignore-unknown .",
73
+ "lint": "eslint .",
74
+ "prepack": "pnpm build",
75
+ "pkg:build": "pkg build --strict",
76
+ "pkg:check": "pkg --strict",
77
+ "prepare": "husky install",
78
+ "release": "semantic-release",
79
+ "storybook:build": "storybook build -o storybook/storybook-static",
80
+ "storybook:dev": "storybook dev -p 6006",
81
+ "test": "jest",
82
+ "test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
83
+ "ts:check": "tsc",
84
+ "watch": "pkg watch --strict",
85
+ "workshop:build": "workshop build",
86
+ "workshop:dev": "workshop dev",
87
+ "workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
88
+ },
63
89
  "commitlint": {
64
90
  "extends": [
65
91
  "@commitlint/config-conventional"
@@ -183,37 +209,25 @@
183
209
  "react-is": "^18 || >=19.0.0-0",
184
210
  "styled-components": "^5.2 || ^6"
185
211
  },
212
+ "packageManager": "pnpm@9.15.9",
186
213
  "engines": {
187
214
  "node": ">=20.19 <22 || >=22.12"
188
215
  },
189
216
  "publishConfig": {
190
217
  "access": "public"
191
218
  },
219
+ "pnpm": {
220
+ "overrides": {
221
+ "@types/react": "$@types/react",
222
+ "@types/react-dom": "$@types/react-dom",
223
+ "@types/react-is": "$@types/react-is",
224
+ "conventional-changelog-conventionalcommits": ">= 8.0.0",
225
+ "react": "$react",
226
+ "react-dom": "$react-dom",
227
+ "react-is": "$react-is"
228
+ }
229
+ },
192
230
  "esm.sh": {
193
231
  "bundle": false
194
- },
195
- "scripts": {
196
- "build": "run-s clean pkg:build pkg:check figma:pkg:build",
197
- "clean": "rimraf .workshop dist",
198
- "commit": "cz",
199
- "cypress:dev": "run-p dev cypress:open",
200
- "cypress:open": "cypress open",
201
- "cypress:run": "cypress run",
202
- "dev": "run-p storybook:dev workshop:dev",
203
- "figma:pkg:build": "cd figma && pnpm build",
204
- "format": "prettier --write --cache --ignore-unknown .",
205
- "lint": "eslint .",
206
- "pkg:build": "pkg build --strict",
207
- "pkg:check": "pkg --strict",
208
- "release": "semantic-release",
209
- "storybook:build": "storybook build -o storybook/storybook-static",
210
- "storybook:dev": "storybook dev -p 6006",
211
- "test": "jest",
212
- "test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
213
- "ts:check": "tsc",
214
- "watch": "pkg watch --strict",
215
- "workshop:build": "workshop build",
216
- "workshop:dev": "workshop dev",
217
- "workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
218
232
  }
219
- }
233
+ }