@feedvalue/react 0.1.2 → 0.1.4

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 +16 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedvalue/react",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "FeedValue React SDK - Provider, Hooks, and Components for React 18+",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -23,35 +23,25 @@
23
23
  "README.md"
24
24
  ],
25
25
  "sideEffects": false,
26
- "scripts": {
27
- "build": "tsup",
28
- "dev": "tsup --watch",
29
- "lint": "eslint src",
30
- "test": "vitest run",
31
- "test:watch": "vitest",
32
- "test:coverage": "vitest run --coverage",
33
- "typecheck": "tsc --noEmit",
34
- "clean": "rm -rf dist"
35
- },
36
26
  "peerDependencies": {
37
27
  "react": ">=18.0.0",
38
28
  "react-dom": ">=18.0.0"
39
29
  },
40
30
  "dependencies": {
41
- "@feedvalue/core": "workspace:^"
31
+ "@feedvalue/core": "^0.1.2"
42
32
  },
43
33
  "devDependencies": {
44
34
  "@testing-library/jest-dom": "^6.9.1",
45
35
  "@testing-library/react": "^16.1.0",
46
36
  "@types/react": "^19.0.0",
47
37
  "@types/react-dom": "^19.0.0",
48
- "@vitest/coverage-v8": "^2.1.0",
49
- "happy-dom": "^15.11.0",
38
+ "@vitest/coverage-v8": "^4.0.18",
39
+ "happy-dom": "^20.3.9",
50
40
  "react": "^19.0.0",
51
41
  "react-dom": "^19.0.0",
52
42
  "tsup": "^8.3.0",
53
43
  "typescript": "^5.7.0",
54
- "vitest": "^2.1.0"
44
+ "vitest": "^4.0.18"
55
45
  },
56
46
  "publishConfig": {
57
47
  "access": "public"
@@ -77,5 +67,15 @@
77
67
  ],
78
68
  "engines": {
79
69
  "node": ">=18"
70
+ },
71
+ "scripts": {
72
+ "build": "tsup",
73
+ "dev": "tsup --watch",
74
+ "lint": "eslint src",
75
+ "test": "vitest run",
76
+ "test:watch": "vitest",
77
+ "test:coverage": "vitest run --coverage",
78
+ "typecheck": "tsc --noEmit",
79
+ "clean": "rm -rf dist"
80
80
  }
81
- }
81
+ }