applesauce-react 0.0.0-next-20241210193522 → 0.0.0-next-20241212192616

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 +8 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "applesauce-react",
3
- "version": "0.0.0-next-20241210193522",
3
+ "version": "0.0.0-next-20241212192616",
4
4
  "description": "React hooks for applesauce",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -41,28 +41,17 @@
41
41
  }
42
42
  },
43
43
  "dependencies": {
44
- "applesauce-content": "0.0.0-next-20241210193522",
45
- "applesauce-core": "0.0.0-next-20241210193522",
46
- "applesauce-factory": "0.0.0-next-20241210193522",
44
+ "applesauce-content": "0.0.0-next-20241212192616",
45
+ "applesauce-core": "0.0.0-next-20241212192616",
46
+ "applesauce-factory": "0.0.0-next-20241212192616",
47
47
  "nostr-tools": "^2.10.3",
48
48
  "react": "^18.3.1",
49
49
  "rxjs": "^7.8.1"
50
50
  },
51
51
  "devDependencies": {
52
- "@jest/globals": "^29.7.0",
53
- "@types/jest": "^29.5.13",
54
52
  "@types/react": "^18.3.11",
55
- "jest": "^29.7.0",
56
- "jest-extended": "^4.0.2",
57
- "typescript": "^5.6.3"
58
- },
59
- "jest": {
60
- "roots": [
61
- "dist"
62
- ],
63
- "setupFilesAfterEnv": [
64
- "jest-extended/all"
65
- ]
53
+ "typescript": "^5.6.3",
54
+ "vitest": "^2.1.8"
66
55
  },
67
56
  "funding": {
68
57
  "type": "lightning",
@@ -71,7 +60,7 @@
71
60
  "scripts": {
72
61
  "build": "tsc",
73
62
  "watch:build": "tsc --watch > /dev/null",
74
- "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
75
- "watch:test": "(trap 'kill 0' SIGINT; pnpm run build -w > /dev/null & pnpm run test --watch)"
63
+ "test": "vitest run --passWithNoTests",
64
+ "watch:test": "vitest"
76
65
  }
77
66
  }