-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.92 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@snapback/cli",
"version": "1.1.14",
"description": "CLI tool for managing SnapBack snapshots and file protection",
"homepage": "https://snapback.dev",
"repository": {
"type": "git",
"url": "https://github.com/snapback-dev/snapback-cli.git"
},
"bugs": {
"url": "https://github.com/snapback-dev/snapback-cli/issues"
},
"license": "Apache-2.0",
"author": {
"name": "SnapBack Team",
"url": "https://snapback.dev"
},
"keywords": [
"snapback",
"cli",
"file-protection",
"snapshots",
"backup"
],
"bin": {
"snapback": "dist/index.js",
"snap": "dist/index.js"
},
"files": [
"dist",
"scripts",
"README.md",
"LICENSE"
],
"dependencies": {
"@asteasolutions/zod-to-openapi": "catalog:",
"@aws-sdk/client-s3": "catalog:",
"@aws-sdk/s3-request-presigner": "catalog:",
"@babel/parser": "catalog:",
"@babel/traverse": "catalog:",
"@inquirer/prompts": "catalog:",
"@modelcontextprotocol/sdk": "catalog:",
"@typescript-eslint/parser": "catalog:",
"@xenova/transformers": "^2.17.2",
"atomically": "^2.0.0",
"better-sqlite3": "catalog:",
"bottleneck": "catalog:",
"boxen": "catalog:",
"chalk": "catalog:",
"chokidar": "catalog:",
"cli-table3": "catalog:",
"commander": "catalog:",
"conf": "catalog:",
"cosmiconfig": "catalog:",
"dotenv": "catalog:",
"drizzle-orm": "catalog:",
"es-toolkit": "catalog:",
"esprima": "catalog:",
"eventemitter2": "catalog:",
"execa": "catalog:",
"fast-glob": "catalog:",
"ky": "catalog:",
"listr2": "catalog:",
"log-update": "catalog:",
"lru-cache": "catalog:",
"madge": "catalog:",
"minimatch": "catalog:",
"nanoid": "catalog:",
"opossum": "catalog:",
"ora": "catalog:",
"p-limit": "catalog:",
"p-retry": "catalog:",
"pino": "catalog:",
"quick-lru": "catalog:",
"simple-git": "catalog:",
"sqlite-vec": "0.1.7-alpha.2",
"yargs": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@snapback/contracts": "workspace:*",
"@snapback/core": "workspace:*",
"@snapback/engine": "workspace:*",
"@snapback/intelligence": "workspace:*",
"@snapback/mcp": "workspace:*",
"@snapback/mcp-config": "workspace:*",
"@snapback/sdk": "workspace:*",
"@vitest/coverage-v8": "catalog:",
"tsup": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"build": "tsup && tsc --build tsconfig.build.json --emitDeclarationOnly",
"check": "biome check .",
"dev": "tsup --watch",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"prepublishOnly": "node -e \"if(!process.env.npm_execpath?.includes('pnpm')){console.error('\\x1b[31mERROR: Use pnpm publish, not npm publish (catalog: protocol requires pnpm)\\x1b[0m');process.exit(1)}\" && pnpm run build && pnpm run test",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"type-check": "tsc -p tsconfig.json --noEmit",
"cli:install": "pnpm build && pnpm link --global && echo '✅ CLI installed globally. Run: snap --help or snapback --help'",
"cli:uninstall": "pnpm unlink --global && echo '✅ CLI uninstalled globally'",
"cli:reinstall": "pnpm run cli:uninstall && pnpm run cli:install",
"mcp:configure": "node dist/index.js tools configure --yes",
"mcp:configure:dev": "node dist/index.js tools configure --yes --dev",
"mcp:status": "node dist/index.js tools configure --list"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": "./dist/index.js",
"./services/snapback-dir": "./dist/services/snapback-dir.js"
},
"type": "module",
"engines": {
"node": ">=18.17.0",
"npm": ">=8.0.0",
"pnpm": ">=8.0.0"
}
}