@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.
Files changed (1) hide show
  1. package/package.json +93 -93
package/package.json CHANGED
@@ -1,94 +1,94 @@
1
1
  {
2
- "name": "@dbsp/cli",
3
- "version": "1.0.0",
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
- "scripts": {
59
- "build": "tsup",
60
- "test": "vitest run",
61
- "test:watch": "vitest",
62
- "typecheck": "tsc --noEmit"
63
- },
64
- "dependencies": {
65
- "@dbsp/adapter-pgsql": "workspace:*",
66
- "@dbsp/core": "workspace:*",
67
- "@dbsp/nql": "workspace:*",
68
- "@dbsp/types": "workspace:*",
69
- "@oclif/table": "^0.5.4",
70
- "commander": "catalog:",
71
- "ink": "catalog:",
72
- "react": "catalog:"
73
- },
74
- "peerDependencies": {
75
- "pg": "^8.16.0",
76
- "tsx": "^4.21.0"
77
- },
78
- "peerDependenciesMeta": {
79
- "tsx": {
80
- "optional": true
81
- },
82
- "pg": {
83
- "optional": true
84
- }
85
- },
86
- "devDependencies": {
87
- "@types/node": "catalog:",
88
- "@types/react": "catalog:",
89
- "tsup": "catalog:",
90
- "tsx": "catalog:",
91
- "typescript": "catalog:",
92
- "vitest": "catalog:"
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
+ }