@foris/avocado-suite 0.22.0 → 0.22.1-beta.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foris/avocado-suite",
3
- "version": "0.22.0",
3
+ "version": "0.22.1-beta.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -17,18 +17,23 @@
17
17
  "require": "./dist/avocado-suite.umd.js"
18
18
  }
19
19
  },
20
+ "scripts": {
21
+ "build": "tsc && vite build",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest --ui",
24
+ "coverage": "vitest run --coverage"
25
+ },
20
26
  "dependencies": {
21
- "react": "18.2.0",
27
+ "@foris/avocado-core": "workspace:*",
28
+ "@foris/avocado-icons": "workspace:*",
22
29
  "react-datepicker": "7.3.0",
23
- "react-dom": "18.2.0",
24
30
  "react-select": "5.8.0",
25
31
  "react-select-async-paginate": "0.7.3",
26
32
  "react-toastify": "9.0.3",
27
- "zustand": "4.5.4",
28
- "@foris/avocado-core": "0.8.0",
29
- "@foris/avocado-icons": "1.9.0"
33
+ "zustand": "4.5.4"
30
34
  },
31
35
  "devDependencies": {
36
+ "@foris/tsconfig": "workspace:*",
32
37
  "@testing-library/jest-dom": "6.4.0",
33
38
  "@testing-library/react": "14.2.0",
34
39
  "@testing-library/user-event": "14.5.2",
@@ -41,22 +46,17 @@
41
46
  "@vitest/ui": "1.2.2",
42
47
  "classnames": "2.3.2",
43
48
  "jsdom": "24.0.0",
49
+ "react": "18.2.0",
50
+ "react-dom": "18.2.0",
44
51
  "sass": "1.62.1",
45
52
  "typescript": "5.1.3",
46
53
  "vite": "5.0.12",
47
54
  "vite-plugin-dts": "3.7.1",
48
- "vitest": "1.2.2",
49
- "@foris/tsconfig": "0.0.1"
55
+ "vitest": "1.2.2"
50
56
  },
51
57
  "peerDependencies": {
52
58
  "react-select": "5.8.0",
53
59
  "react-select-async-paginate": "0.7.3",
54
60
  "react-toastify": "9.0.3"
55
- },
56
- "scripts": {
57
- "build": "tsc && vite build",
58
- "test": "vitest run",
59
- "test:watch": "vitest --ui",
60
- "coverage": "vitest run --coverage"
61
61
  }
62
- }
62
+ }