-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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": "@objectql/cli",
"version": "4.2.2",
"description": "Command-line interface for ObjectQL - metadata scaffolding, type generation, DB workflows, and local tooling",
"keywords": [
"objectql",
"cli",
"command-line",
"codegen",
"migration",
"repl",
"tools",
"development"
],
"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 && rsync -av --exclude='node_modules' --exclude='dist' --exclude='__tests__' ../../../examples/quickstart/hello-world templates/ && rsync -av --exclude='node_modules' --exclude='dist' --exclude='__tests__' ../../../examples/showcase/project-tracker/ templates/starter",
"watch": "tsc -w",
"test": "vitest run"
},
"dependencies": {
"@objectql/core": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"@objectql/plugin-validator": "workspace:*",
"@objectql/types": "workspace:*",
"@objectstack/objectql": "^3.2.9",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.6.1",
"fast-glob": "^3.3.3",
"js-yaml": "^4.1.1",
"prettier": "^3.8.1",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.37",
"typescript": "^5.9.3"
}
}