@filoz/repair-cli 0.0.2 → 0.0.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 (2) hide show
  1. package/package.json +19 -18
  2. package/src/cli.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@filoz/repair-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Early repair for faulty service providers and datasets",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,6 @@
24
24
  "main": "dist/src/cli.js",
25
25
  "module": "dist/src/cli.js",
26
26
  "types": "dist/src/cli.d.ts",
27
- "bin": "./dist/cli.js",
28
27
  "sideEffects": false,
29
28
  "exports": {
30
29
  ".": {
@@ -38,15 +37,6 @@
38
37
  "dist/src/**/*.d.ts",
39
38
  "dist/src/**/*.d.ts.map"
40
39
  ],
41
- "scripts": {
42
- "build": "wireit",
43
- "test": "wireit",
44
- "test:node": "wireit",
45
- "test:browser": "wireit",
46
- "lint": "wireit",
47
- "lint:fix": "biome check --fix .",
48
- "update:msw": "pnpx msw init test/mocks/ --save"
49
- },
50
40
  "wireit": {
51
41
  "build": {
52
42
  "command": "tsc --build --pretty",
@@ -102,12 +92,11 @@
102
92
  },
103
93
  "dependencies": {
104
94
  "@clack/prompts": "^1.5.1",
105
- "@filoz/repair-db": "workspace:*",
106
95
  "@filoz/synapse-core": "^0.6.0",
107
96
  "@libsql/client": "^0.17.3",
108
97
  "conf": "^15.1.0",
109
98
  "drizzle-kit": "^0.31.10",
110
- "drizzle-orm": "catalog:",
99
+ "drizzle-orm": "^0.45.2",
111
100
  "incur": "^0.4.6",
112
101
  "iso-base": "^4.4.0",
113
102
  "iso-web": "^3.1.2",
@@ -119,15 +108,27 @@
119
108
  "terminal-link": "^5.0.0"
120
109
  },
121
110
  "devDependencies": {
122
- "@biomejs/biome": "catalog:",
123
- "@types/node": "catalog:",
111
+ "@biomejs/biome": "2.4.16",
112
+ "@types/node": "^25.9.2",
124
113
  "@types/pg": "^8.20.0",
125
114
  "playwright-test": "^14.1.12",
126
115
  "type-fest": "^5.7.0",
127
- "typescript": "catalog:",
128
- "viem": "catalog:"
116
+ "typescript": "6.0.3",
117
+ "viem": "^2.50.4"
129
118
  },
130
119
  "publishConfig": {
131
120
  "access": "public"
121
+ },
122
+ "scripts": {
123
+ "build": "wireit",
124
+ "test": "wireit",
125
+ "test:node": "wireit",
126
+ "test:browser": "wireit",
127
+ "lint": "wireit",
128
+ "lint:fix": "biome check --fix .",
129
+ "update:msw": "pnpx msw init test/mocks/ --save"
130
+ },
131
+ "bin": {
132
+ "repair-cli": "./dist/cli.js"
132
133
  }
133
- }
134
+ }
package/src/cli.ts CHANGED
File without changes