-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"name": "@the-andb/cli",
"version": "4.0.0",
"publishConfig": {
"access": "public"
},
"description": "TheAndb - Keep Going. Keep Syncing.",
"main": "index.js",
"bin": {
"andb": "dist/index.js"
},
"type": "commonjs",
"scripts": {
"build": "node scripts/build.mjs",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"database",
"migration",
"cli",
"mysql",
"andb"
],
"author": "ph4n4n",
"license": "SEE LICENSE IN ../LICENSE",
"dependencies": {
"@the-andb/core": "workspace:*",
"andb-logger": "^1.0.3",
"better-sqlite3": "^12.8.0",
"commander": "^11.1.0",
"js-yaml": "^4.1.0",
"reflect-metadata": "^0.2.2",
"sqlite3": "^6.0.1",
"typeorm": "^0.3.28",
"@modelcontextprotocol/sdk": "^1.11.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"esbuild": "^0.27.4",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Andb/andb-cli.git"
}
}