@bigtablet/design-system 1.19.4 → 1.20.1
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 +27 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigtablet/design-system",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"description": "Bigtablet Design System UI Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -50,7 +50,12 @@
|
|
|
50
50
|
"test": "vitest run --project unit",
|
|
51
51
|
"test:watch": "vitest --project unit",
|
|
52
52
|
"test:coverage": "vitest run --project unit --coverage",
|
|
53
|
-
"chromatic": "npx chromatic --project-token
|
|
53
|
+
"chromatic": "npx chromatic --project-token=$CHROMATIC_TOKEN --build-script-name=build:sb",
|
|
54
|
+
"figma:test": "node scripts/figma-connect.mjs",
|
|
55
|
+
"figma:snapshot": "node scripts/figma-snapshot.mjs",
|
|
56
|
+
"figma:diff": "node scripts/figma-diff.mjs",
|
|
57
|
+
"figma:apply": "node scripts/figma-apply.mjs",
|
|
58
|
+
"size": "size-limit"
|
|
54
59
|
},
|
|
55
60
|
"keywords": [
|
|
56
61
|
"design-system",
|
|
@@ -80,10 +85,11 @@
|
|
|
80
85
|
"@semantic-release/git": "^10.0.1",
|
|
81
86
|
"@semantic-release/github": "^12.0.1",
|
|
82
87
|
"@semantic-release/npm": "^13.1.1",
|
|
83
|
-
"@
|
|
84
|
-
"@storybook/addon-
|
|
85
|
-
"@storybook/
|
|
86
|
-
"@storybook/react
|
|
88
|
+
"@size-limit/preset-small-lib": "^12.0.1",
|
|
89
|
+
"@storybook/addon-docs": "^10.2.17",
|
|
90
|
+
"@storybook/addon-vitest": "10.2.17",
|
|
91
|
+
"@storybook/react": "10.2.17",
|
|
92
|
+
"@storybook/react-vite": "10.2.17",
|
|
87
93
|
"@testing-library/dom": "^10.4.1",
|
|
88
94
|
"@testing-library/jest-dom": "^6.9.1",
|
|
89
95
|
"@testing-library/react": "^16.3.2",
|
|
@@ -103,7 +109,8 @@
|
|
|
103
109
|
"react-dom": "19.2.0",
|
|
104
110
|
"sass-embedded": "^1.93.3",
|
|
105
111
|
"semantic-release": "^25.0.1",
|
|
106
|
-
"
|
|
112
|
+
"size-limit": "^12.0.1",
|
|
113
|
+
"storybook": "10.2.17",
|
|
107
114
|
"tsup": "^8.5.0",
|
|
108
115
|
"typescript": "^5",
|
|
109
116
|
"vite": "^5",
|
|
@@ -113,11 +120,23 @@
|
|
|
113
120
|
"access": "public",
|
|
114
121
|
"registry": "https://registry.npmjs.org/"
|
|
115
122
|
},
|
|
123
|
+
"size-limit": [
|
|
124
|
+
{
|
|
125
|
+
"path": "dist/index.js",
|
|
126
|
+
"limit": "12 kB"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"path": "dist/vanilla/bigtablet.min.js",
|
|
130
|
+
"limit": "5 kB"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
116
133
|
"pnpm": {
|
|
117
134
|
"overrides": {
|
|
118
135
|
"rollup": "^4.59.0",
|
|
119
136
|
"lodash": "^4.17.23",
|
|
120
|
-
"lodash-es": "^4.17.23"
|
|
137
|
+
"lodash-es": "^4.17.23",
|
|
138
|
+
"immutable": "^5.1.5",
|
|
139
|
+
"minimatch": "^10.2.4"
|
|
121
140
|
}
|
|
122
141
|
}
|
|
123
142
|
}
|