-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "@objectql/cli",
"version": "2.0.0",
"description": "Command-line interface for ObjectQL - Code generation, migrations, REPL, and AI-powered development tools",
"keywords": [
"objectql",
"cli",
"command-line",
"codegen",
"migration",
"repl",
"ai",
"tools",
"development",
"studio"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"bin",
"templates"
],
"bin": {
"objectql": "./bin/objectql"
},
"scripts": {
"build": "tsc && pnpm run copy-templates",
"copy-templates": "rm -rf templates && mkdir -p templates && cp -r ../../../examples/quickstart/hello-world templates/ && cp -r ../../../examples/showcase/project-tracker templates/starter && rm -rf templates/*/node_modules templates/*/dist",
"watch": "tsc -w",
"test": "jest"
},
"dependencies": {
"@objectql/types": "workspace:*",
"@objectql/core": "workspace:*",
"@objectql/server": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"sqlite3": "^5.1.7",
"commander": "^11.0.0",
"chalk": "^4.1.2",
"fast-glob": "^3.3.0",
"js-yaml": "^4.1.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"openai": "^4.28.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"@types/js-yaml": "^4.0.5"
}
}