-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "nl2sql-cli",
"version": "2.0.0",
"description": "CLI tool to convert natural language to SQL",
"main": "dist/index.js",
"bin": {
"nl2sql": "./bin/nl2sql"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"keywords": [
"sql",
"nl2sql",
"qwen",
"openrouter",
"cli",
"sequelize"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@xenova/transformers": "^2.17.2",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"dotenv": "^16.4.1",
"openai": "^4.28.0"
},
"devDependencies": {
"@babel/types": "^7.28.4",
"@types/babel__traverse": "^7.28.0",
"@types/chokidar": "^2.1.3",
"@types/node": "^20.11.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.0"
}
}