@dbsp/cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +93 -93
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "@dbsp/cli",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "CLI tools for db-semantic-planner — REPL, schema generation, DDL provisioning",
|
|
5
|
+
"author": "Olivier Orabona <oorabona@users.noreply.github.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"cli",
|
|
12
|
+
"database",
|
|
13
|
+
"repl",
|
|
14
|
+
"schema",
|
|
15
|
+
"ddl",
|
|
16
|
+
"migrations",
|
|
17
|
+
"postgresql"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/oorabona/db-semantic-planner.git",
|
|
22
|
+
"directory": "packages/cli"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/oorabona/db-semantic-planner/tree/main/packages/cli",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/oorabona/db-semantic-planner/issues"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"type": "module",
|
|
32
|
+
"bin": {
|
|
33
|
+
"dbsp": "./dist/index.js"
|
|
34
|
+
},
|
|
35
|
+
"main": "./dist/index.js",
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"exports": {
|
|
38
|
+
".": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"import": "./dist/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./generators/schema-codegen": {
|
|
43
|
+
"types": "./dist/generators/schema-codegen.d.ts",
|
|
44
|
+
"import": "./dist/generators/schema-codegen.js"
|
|
45
|
+
},
|
|
46
|
+
"./batch": {
|
|
47
|
+
"types": "./dist/repl/batch.d.ts",
|
|
48
|
+
"import": "./dist/repl/batch.js"
|
|
49
|
+
},
|
|
50
|
+
"./schema-loader": {
|
|
51
|
+
"types": "./dist/utils/schema-loader.d.ts",
|
|
52
|
+
"import": "./dist/utils/schema-loader.js"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"dist"
|
|
57
|
+
],
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@oclif/table": "^0.5.4",
|
|
60
|
+
"commander": "^14.0.3",
|
|
61
|
+
"ink": "^7.0.1",
|
|
62
|
+
"react": "^19.2.5",
|
|
63
|
+
"@dbsp/adapter-pgsql": "1.0.1",
|
|
64
|
+
"@dbsp/core": "1.0.1",
|
|
65
|
+
"@dbsp/nql": "1.0.1",
|
|
66
|
+
"@dbsp/types": "1.0.1"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"pg": "^8.16.0",
|
|
70
|
+
"tsx": "^4.21.0"
|
|
71
|
+
},
|
|
72
|
+
"peerDependenciesMeta": {
|
|
73
|
+
"tsx": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"pg": {
|
|
77
|
+
"optional": true
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@types/node": "^25.6.0",
|
|
82
|
+
"@types/react": "^19.2.14",
|
|
83
|
+
"tsup": "^8.5.1",
|
|
84
|
+
"tsx": "^4.21.0",
|
|
85
|
+
"typescript": "~5.9.3",
|
|
86
|
+
"vitest": "^4.1.5"
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"build": "tsup",
|
|
90
|
+
"test": "vitest run",
|
|
91
|
+
"test:watch": "vitest",
|
|
92
|
+
"typecheck": "tsc --noEmit"
|
|
93
|
+
}
|
|
94
|
+
}
|