@varity-labs/ui-kit 2.0.0-beta.1 → 2.0.0-beta.2

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 +19 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varity-labs/ui-kit",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.2",
4
4
  "description": "React component library for building applications with Varity - Auth, payments, dashboard components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19,21 +19,6 @@
19
19
  "LICENSE"
20
20
  ],
21
21
  "sideEffects": false,
22
- "scripts": {
23
- "build": "tsc",
24
- "watch": "tsc --watch",
25
- "test": "jest --coverage",
26
- "test:watch": "jest --watch",
27
- "test:unit": "jest --testMatch='**/*.test.ts?(x)'",
28
- "test:integration": "jest --testMatch='**/*.integration.test.ts?(x)'",
29
- "clean": "rm -rf dist",
30
- "storybook": "storybook dev -p 6006",
31
- "build-storybook": "storybook build",
32
- "lint": "eslint src --ext .ts,.tsx",
33
- "lint:fix": "eslint src --ext .ts,.tsx --fix",
34
- "type-check": "tsc --noEmit",
35
- "prepublishOnly": "npm run build"
36
- },
37
22
  "keywords": [
38
23
  "varity",
39
24
  "ui-kit",
@@ -58,11 +43,11 @@
58
43
  "dependencies": {
59
44
  "@privy-io/react-auth": "^1.88.4",
60
45
  "@tanstack/react-query": "^5.59.0",
61
- "@varity-labs/sdk": "workspace:^",
62
- "@varity-labs/types": "workspace:^",
63
46
  "lucide-react": "^0.554.0",
64
47
  "react-hot-toast": "^2.6.0",
65
- "thirdweb": "^5.112.0"
48
+ "thirdweb": "^5.112.0",
49
+ "@varity-labs/types": "^2.0.0-beta.2",
50
+ "@varity-labs/sdk": "^2.0.0-beta.2"
66
51
  },
67
52
  "optionalDependencies": {
68
53
  "@privy-io/wagmi": "^0.2.12",
@@ -107,5 +92,19 @@
107
92
  "tailwindcss": "^3.4.0",
108
93
  "ts-jest": "^29.4.6",
109
94
  "typescript": "^5.3.0"
95
+ },
96
+ "scripts": {
97
+ "build": "tsc",
98
+ "watch": "tsc --watch",
99
+ "test": "jest --coverage",
100
+ "test:watch": "jest --watch",
101
+ "test:unit": "jest --testMatch='**/*.test.ts?(x)'",
102
+ "test:integration": "jest --testMatch='**/*.integration.test.ts?(x)'",
103
+ "clean": "rm -rf dist",
104
+ "storybook": "storybook dev -p 6006",
105
+ "build-storybook": "storybook build",
106
+ "lint": "eslint src --ext .ts,.tsx",
107
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
108
+ "type-check": "tsc --noEmit"
110
109
  }
111
- }
110
+ }