@sanity/ui 2.10.17-canary.0 → 2.10.17
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 +40 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/ui",
|
|
3
|
-
"version": "2.10.17
|
|
3
|
+
"version": "2.10.17",
|
|
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"
|
|
@@ -171,37 +197,25 @@
|
|
|
171
197
|
"react-is": "^18 || >=19.0.0-0",
|
|
172
198
|
"styled-components": "^5.2 || ^6"
|
|
173
199
|
},
|
|
200
|
+
"packageManager": "pnpm@9.15.2",
|
|
174
201
|
"engines": {
|
|
175
202
|
"node": ">=14.0.0"
|
|
176
203
|
},
|
|
177
204
|
"publishConfig": {
|
|
178
205
|
"access": "public"
|
|
179
206
|
},
|
|
207
|
+
"pnpm": {
|
|
208
|
+
"overrides": {
|
|
209
|
+
"@types/react": "$@types/react",
|
|
210
|
+
"@types/react-dom": "$@types/react-dom",
|
|
211
|
+
"@types/react-is": "$@types/react-is",
|
|
212
|
+
"conventional-changelog-conventionalcommits": ">= 8.0.0",
|
|
213
|
+
"react": "$react",
|
|
214
|
+
"react-dom": "$react-dom",
|
|
215
|
+
"react-is": "$react-is"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
180
218
|
"esm.sh": {
|
|
181
219
|
"bundle": false
|
|
182
|
-
},
|
|
183
|
-
"scripts": {
|
|
184
|
-
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
185
|
-
"clean": "rimraf .workshop dist",
|
|
186
|
-
"commit": "cz",
|
|
187
|
-
"cypress:dev": "run-p dev cypress:open",
|
|
188
|
-
"cypress:open": "cypress open",
|
|
189
|
-
"cypress:run": "cypress run",
|
|
190
|
-
"dev": "run-p storybook:dev workshop:dev",
|
|
191
|
-
"figma:pkg:build": "cd figma && pnpm build",
|
|
192
|
-
"format": "prettier --write --cache --ignore-unknown .",
|
|
193
|
-
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
|
|
194
|
-
"pkg:build": "pkg build --strict",
|
|
195
|
-
"pkg:check": "pkg --strict",
|
|
196
|
-
"release": "semantic-release",
|
|
197
|
-
"storybook:build": "storybook build",
|
|
198
|
-
"storybook:dev": "storybook dev -p 6006",
|
|
199
|
-
"test": "jest",
|
|
200
|
-
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
201
|
-
"ts:check": "tsc",
|
|
202
|
-
"watch": "pkg watch --strict",
|
|
203
|
-
"workshop:build": "workshop build",
|
|
204
|
-
"workshop:dev": "workshop dev",
|
|
205
|
-
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
206
220
|
}
|
|
207
|
-
}
|
|
221
|
+
}
|