@snapback/cli 1.0.0 → 1.0.1
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/dist/index.js +0 -0
- package/package.json +42 -43
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snapback/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI tool for managing SnapBack snapshots and file protection",
|
|
5
5
|
"homepage": "https://snapback.dev",
|
|
6
6
|
"repository": {
|
|
@@ -32,34 +32,48 @@
|
|
|
32
32
|
"LICENSE"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@inquirer/prompts": "
|
|
36
|
-
"@modelcontextprotocol/sdk": "
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
35
|
+
"@inquirer/prompts": "7.9.0",
|
|
36
|
+
"@modelcontextprotocol/sdk": "1.25.1",
|
|
37
|
+
"boxen": "8.0.1",
|
|
38
|
+
"chalk": "4.1.2",
|
|
39
|
+
"chokidar": "4.0.3",
|
|
40
|
+
"cli-table3": "0.6.5",
|
|
41
|
+
"commander": "9.5.0",
|
|
42
|
+
"conf": "13.0.1",
|
|
43
|
+
"esprima": "4.0.1",
|
|
44
|
+
"execa": "9.5.2",
|
|
45
|
+
"log-update": "6.1.0",
|
|
46
|
+
"ora": "5.4.1",
|
|
47
|
+
"zod": "3.25.76",
|
|
48
|
+
"@snapback/contracts": "0.2.1",
|
|
49
|
+
"@snapback/core": "0.2.0",
|
|
50
|
+
"@snapback/core-runtime": "0.1.0",
|
|
51
|
+
"@snapback/mcp-config": "1.0.0",
|
|
52
|
+
"@snapback/mcp": "0.1.0",
|
|
53
|
+
"@snapback/engine": "0.1.0",
|
|
54
|
+
"@snapback/intelligence": "0.1.0",
|
|
55
|
+
"@snapback/sdk": "0.2.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@vitest/coverage-v8": "
|
|
59
|
-
"tsup": "
|
|
60
|
-
"tsx": "
|
|
61
|
-
"typescript": "
|
|
62
|
-
"vitest": "
|
|
58
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
59
|
+
"tsup": "8.5.0",
|
|
60
|
+
"tsx": "4.20.5",
|
|
61
|
+
"typescript": "5.9.2",
|
|
62
|
+
"vitest": "3.2.4"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public",
|
|
66
|
+
"registry": "https://registry.npmjs.org/"
|
|
67
|
+
},
|
|
68
|
+
"exports": {
|
|
69
|
+
".": "./dist/index.js",
|
|
70
|
+
"./services/snapback-dir": "./dist/services/snapback-dir.js"
|
|
71
|
+
},
|
|
72
|
+
"type": "module",
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18.17.0",
|
|
75
|
+
"npm": ">=8.0.0",
|
|
76
|
+
"pnpm": ">=8.0.0"
|
|
63
77
|
},
|
|
64
78
|
"scripts": {
|
|
65
79
|
"build": "tsup && tsc --build tsconfig.build.json --emitDeclarationOnly",
|
|
@@ -68,7 +82,6 @@
|
|
|
68
82
|
"format": "biome format --write .",
|
|
69
83
|
"lint": "biome lint .",
|
|
70
84
|
"lint:fix": "biome lint --fix .",
|
|
71
|
-
"prepublishOnly": "pnpm run build && pnpm run test",
|
|
72
85
|
"test": "vitest run",
|
|
73
86
|
"test:coverage": "vitest run --coverage",
|
|
74
87
|
"test:watch": "vitest",
|
|
@@ -79,19 +92,5 @@
|
|
|
79
92
|
"mcp:configure": "node dist/index.js tools configure --yes",
|
|
80
93
|
"mcp:configure:dev": "node dist/index.js tools configure --yes --dev",
|
|
81
94
|
"mcp:status": "node dist/index.js tools configure --list"
|
|
82
|
-
},
|
|
83
|
-
"publishConfig": {
|
|
84
|
-
"access": "public",
|
|
85
|
-
"registry": "https://registry.npmjs.org/"
|
|
86
|
-
},
|
|
87
|
-
"exports": {
|
|
88
|
-
".": "./dist/index.js",
|
|
89
|
-
"./services/snapback-dir": "./dist/services/snapback-dir.js"
|
|
90
|
-
},
|
|
91
|
-
"type": "module",
|
|
92
|
-
"engines": {
|
|
93
|
-
"node": ">=18.17.0",
|
|
94
|
-
"npm": ">=8.0.0",
|
|
95
|
-
"pnpm": ">=8.0.0"
|
|
96
95
|
}
|
|
97
|
-
}
|
|
96
|
+
}
|