@snapback/cli 1.0.0 → 1.0.2

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/dist/index.js +0 -0
  2. 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.0",
3
+ "version": "1.0.2",
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": "catalog:",
36
- "@modelcontextprotocol/sdk": "catalog:",
37
- "@snapback/contracts": "workspace:*",
38
- "@snapback/core": "workspace:*",
39
- "@snapback/core-runtime": "workspace:*",
40
- "@snapback/mcp": "workspace:*",
41
- "@snapback/mcp-config": "workspace:*",
42
- "@snapback/engine": "workspace:*",
43
- "@snapback/intelligence": "workspace:*",
44
- "@snapback/sdk": "workspace:*",
45
- "boxen": "catalog:",
46
- "chalk": "catalog:",
47
- "chokidar": "catalog:",
48
- "cli-table3": "catalog:",
49
- "commander": "catalog:",
50
- "conf": "catalog:",
51
- "esprima": "catalog:",
52
- "execa": "catalog:",
53
- "log-update": "catalog:",
54
- "ora": "catalog:",
55
- "zod": "catalog:"
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"
56
48
  },
57
49
  "devDependencies": {
58
- "@vitest/coverage-v8": "catalog:",
59
- "tsup": "catalog:",
60
- "tsx": "catalog:",
61
- "typescript": "catalog:",
62
- "vitest": "catalog:"
50
+ "@vitest/coverage-v8": "3.2.4",
51
+ "tsup": "8.5.0",
52
+ "tsx": "4.20.5",
53
+ "typescript": "5.9.2",
54
+ "vitest": "3.2.4",
55
+ "@snapback/contracts": "0.2.1",
56
+ "@snapback/intelligence": "0.1.0",
57
+ "@snapback/engine": "0.1.0",
58
+ "@snapback/core-runtime": "0.1.0",
59
+ "@snapback/mcp": "0.1.0",
60
+ "@snapback/sdk": "0.2.0",
61
+ "@snapback/core": "0.2.0",
62
+ "@snapback/mcp-config": "1.0.0"
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
+ }