@filoz/repair-cli 0.0.2 → 0.0.3

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 +21 -19
  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.3",
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",
@@ -116,18 +105,31 @@
116
105
  "p-map": "^7.0.4",
117
106
  "p-queue": "^9.3.0",
118
107
  "pg": "^8.21.0",
119
- "terminal-link": "^5.0.0"
108
+ "terminal-link": "^5.0.0",
109
+ "@filoz/repair-db": "0.0.0"
120
110
  },
121
111
  "devDependencies": {
122
- "@biomejs/biome": "catalog:",
123
- "@types/node": "catalog:",
112
+ "@biomejs/biome": "2.4.16",
113
+ "@types/node": "^25.9.2",
124
114
  "@types/pg": "^8.20.0",
125
115
  "playwright-test": "^14.1.12",
126
116
  "type-fest": "^5.7.0",
127
- "typescript": "catalog:",
128
- "viem": "catalog:"
117
+ "typescript": "6.0.3",
118
+ "viem": "^2.50.4"
129
119
  },
130
120
  "publishConfig": {
131
121
  "access": "public"
122
+ },
123
+ "scripts": {
124
+ "build": "wireit",
125
+ "test": "wireit",
126
+ "test:node": "wireit",
127
+ "test:browser": "wireit",
128
+ "lint": "wireit",
129
+ "lint:fix": "biome check --fix .",
130
+ "update:msw": "pnpx msw init test/mocks/ --save"
131
+ },
132
+ "bin": {
133
+ "repair-cli": "./dist/cli.js"
132
134
  }
133
- }
135
+ }
package/src/cli.ts CHANGED
File without changes