dbcube 1.1.3 → 1.1.4
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/.npmignore +2 -0
- package/.pnpmrc +1 -0
- package/dist/index.cjs +95 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +95 -0
- package/dist/index.d.ts +95 -0
- package/dist/index.js +95 -0
- package/dist/index.js.map +1 -1
- package/node_modules/.bin/dbcube +21 -0
- package/node_modules/.bin/dbcube.CMD +12 -0
- package/node_modules/.bin/dbcube.ps1 +41 -0
- package/node_modules/.bin/esbuild +21 -0
- package/node_modules/.bin/esbuild.CMD +12 -0
- package/node_modules/.bin/esbuild.ps1 +41 -0
- package/node_modules/.bin/rollup +21 -0
- package/node_modules/.bin/rollup.CMD +12 -0
- package/node_modules/.bin/rollup.ps1 +41 -0
- package/node_modules/.bin/tsc +21 -0
- package/node_modules/.bin/tsc.CMD +12 -0
- package/node_modules/.bin/tsc.ps1 +41 -0
- package/node_modules/.bin/tsserver +21 -0
- package/node_modules/.bin/tsserver.CMD +12 -0
- package/node_modules/.bin/tsserver.ps1 +41 -0
- package/node_modules/.bin/tsup +21 -0
- package/node_modules/.bin/tsup-node +21 -0
- package/node_modules/.bin/tsup-node.CMD +12 -0
- package/node_modules/.bin/tsup-node.ps1 +41 -0
- package/node_modules/.bin/tsup.CMD +12 -0
- package/node_modules/.bin/tsup.ps1 +41 -0
- package/node_modules/.modules.yaml +503 -0
- package/node_modules/.pnpm/lock.yaml +2116 -0
- package/node_modules/.pnpm-workspace-state.json +25 -0
- package/package.json +78 -83
- package/tsup.config.ts +0 -14
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lastValidatedTimestamp": 1756906923688,
|
|
3
|
+
"projects": {},
|
|
4
|
+
"pnpmfileExists": false,
|
|
5
|
+
"settings": {
|
|
6
|
+
"autoInstallPeers": true,
|
|
7
|
+
"dedupeDirectDeps": false,
|
|
8
|
+
"dedupeInjectedDeps": true,
|
|
9
|
+
"dedupePeerDependents": true,
|
|
10
|
+
"dev": true,
|
|
11
|
+
"excludeLinksFromLockfile": false,
|
|
12
|
+
"hoistPattern": [
|
|
13
|
+
"*"
|
|
14
|
+
],
|
|
15
|
+
"hoistWorkspacePackages": true,
|
|
16
|
+
"injectWorkspacePackages": false,
|
|
17
|
+
"linkWorkspacePackages": false,
|
|
18
|
+
"nodeLinker": "isolated",
|
|
19
|
+
"optional": true,
|
|
20
|
+
"preferWorkspacePackages": false,
|
|
21
|
+
"production": true,
|
|
22
|
+
"publicHoistPattern": []
|
|
23
|
+
},
|
|
24
|
+
"filteredInstall": false
|
|
25
|
+
}
|
package/package.json
CHANGED
|
@@ -1,83 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dbcube",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "dist/index.cjs",
|
|
6
|
-
"module": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
"import": "./dist/index.js",
|
|
10
|
-
"require": "./dist/index.cjs"
|
|
11
|
-
},
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"dbcube": "
|
|
18
|
-
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"dbcube",
|
|
21
|
-
"mysql",
|
|
22
|
-
"mongodb",
|
|
23
|
-
"postgresql",
|
|
24
|
-
"sqlite",
|
|
25
|
-
"database",
|
|
26
|
-
"db",
|
|
27
|
-
"orm",
|
|
28
|
-
"sql",
|
|
29
|
-
"query builder",
|
|
30
|
-
"query",
|
|
31
|
-
"builder",
|
|
32
|
-
"nodejs",
|
|
33
|
-
"backend",
|
|
34
|
-
"library",
|
|
35
|
-
"database library",
|
|
36
|
-
"base de datos",
|
|
37
|
-
"sequelize alternative",
|
|
38
|
-
"lightweight orm",
|
|
39
|
-
"sql toolkit",
|
|
40
|
-
"query optimizer",
|
|
41
|
-
"typescript",
|
|
42
|
-
"javascript",
|
|
43
|
-
"async",
|
|
44
|
-
"modern database",
|
|
45
|
-
"dbcube-orm",
|
|
46
|
-
"@dbcube/query-builder",
|
|
47
|
-
"query-builder",
|
|
48
|
-
"dbcube-query-builder",
|
|
49
|
-
"@dbcube/query-builder",
|
|
50
|
-
"albert",
|
|
51
|
-
"araya",
|
|
52
|
-
"@dbcube",
|
|
53
|
-
"@albrtaraya"
|
|
54
|
-
],
|
|
55
|
-
"author": "Albert Araya",
|
|
56
|
-
"license": "MIT",
|
|
57
|
-
"publishConfig": {
|
|
58
|
-
"access": "public"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@dbcube/cli": "^1.1.3",
|
|
62
|
-
"@dbcube/core": "^1.0.2",
|
|
63
|
-
"@dbcube/query-builder": "^1.0.3"
|
|
64
|
-
},
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"rollup": "^4.50.0",
|
|
80
|
-
"tsup": "^8.5.0",
|
|
81
|
-
"typescript": "^5.9.2"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dbcube",
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.cjs",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"require": "./dist/index.cjs"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"dbcube": "./node_modules/@dbcube/cli/src/index.js"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"dbcube": "node dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"dbcube",
|
|
21
|
+
"mysql",
|
|
22
|
+
"mongodb",
|
|
23
|
+
"postgresql",
|
|
24
|
+
"sqlite",
|
|
25
|
+
"database",
|
|
26
|
+
"db",
|
|
27
|
+
"orm",
|
|
28
|
+
"sql",
|
|
29
|
+
"query builder",
|
|
30
|
+
"query",
|
|
31
|
+
"builder",
|
|
32
|
+
"nodejs",
|
|
33
|
+
"backend",
|
|
34
|
+
"library",
|
|
35
|
+
"database library",
|
|
36
|
+
"base de datos",
|
|
37
|
+
"sequelize alternative",
|
|
38
|
+
"lightweight orm",
|
|
39
|
+
"sql toolkit",
|
|
40
|
+
"query optimizer",
|
|
41
|
+
"typescript",
|
|
42
|
+
"javascript",
|
|
43
|
+
"async",
|
|
44
|
+
"modern database",
|
|
45
|
+
"dbcube-orm",
|
|
46
|
+
"@dbcube/query-builder",
|
|
47
|
+
"query-builder",
|
|
48
|
+
"dbcube-query-builder",
|
|
49
|
+
"@dbcube/query-builder",
|
|
50
|
+
"albert",
|
|
51
|
+
"araya",
|
|
52
|
+
"@dbcube",
|
|
53
|
+
"@albrtaraya"
|
|
54
|
+
],
|
|
55
|
+
"author": "Albert Araya",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@dbcube/cli": "^1.1.3",
|
|
62
|
+
"@dbcube/core": "^1.0.2",
|
|
63
|
+
"@dbcube/query-builder": "^1.0.3"
|
|
64
|
+
},
|
|
65
|
+
"repository": {
|
|
66
|
+
"type": "git",
|
|
67
|
+
"url": "https://github.com/Dbcube/query-builder"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@types/node": "^24.3.0",
|
|
71
|
+
"alwait": "^1.0.0",
|
|
72
|
+
"chalk": "^5.6.0",
|
|
73
|
+
"dotenv": "^17.2.2",
|
|
74
|
+
"rollup": "^4.50.0",
|
|
75
|
+
"tsup": "^8.5.0",
|
|
76
|
+
"typescript": "^5.9.2"
|
|
77
|
+
}
|
|
78
|
+
}
|
package/tsup.config.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from 'tsup';
|
|
2
|
-
|
|
3
|
-
export default defineConfig({
|
|
4
|
-
entry: ['src/index.ts'], // Punto de entrada
|
|
5
|
-
format: ['cjs', 'esm'], // Genera CommonJS y ES Modules
|
|
6
|
-
dts: true, // Genera archivos de tipos
|
|
7
|
-
clean: true, // Limpia el directorio de salida
|
|
8
|
-
outDir: 'dist', // Directorio de salida
|
|
9
|
-
splitting: false, // Desactiva la división de código
|
|
10
|
-
sourcemap: true, // Genera sourcemaps
|
|
11
|
-
outExtension: ({ format }) => ({ // Forzar extensiones personalizadas
|
|
12
|
-
js: format === 'cjs' ? '.cjs' : '.js',
|
|
13
|
-
}),
|
|
14
|
-
});
|