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