drizzle-kit-dm8 0.31.10
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/README.md +79 -0
- package/api.d.mts +3339 -0
- package/api.d.ts +3339 -0
- package/api.js +76755 -0
- package/api.mjs +76783 -0
- package/bin.cjs +115331 -0
- package/index.d.mts +319 -0
- package/index.d.ts +319 -0
- package/index.js +32 -0
- package/index.mjs +7 -0
- package/package.json +145 -0
- package/utils.js +6538 -0
- package/utils.mjs +6519 -0
package/package.json
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "drizzle-kit-dm8",
|
|
3
|
+
"version": "0.31.10",
|
|
4
|
+
"homepage": "https://orm.drizzle.team",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"drizzle",
|
|
7
|
+
"orm",
|
|
8
|
+
"pg",
|
|
9
|
+
"mysql",
|
|
10
|
+
"singlestore",
|
|
11
|
+
"postgresql",
|
|
12
|
+
"postgres",
|
|
13
|
+
"sqlite",
|
|
14
|
+
"database",
|
|
15
|
+
"sql",
|
|
16
|
+
"typescript",
|
|
17
|
+
"ts",
|
|
18
|
+
"drizzle-kit",
|
|
19
|
+
"migrations",
|
|
20
|
+
"schema"
|
|
21
|
+
],
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"provenance": true
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/drizzle-team/drizzle-orm.git"
|
|
28
|
+
},
|
|
29
|
+
"author": "Drizzle Team",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"bin": {
|
|
32
|
+
"drizzle-kit": "./bin.cjs"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"api": "tsx ./dev/api.ts",
|
|
36
|
+
"migrate:old": "drizzle-kit generate:mysql",
|
|
37
|
+
"cli": "tsx ./src/cli/index.ts",
|
|
38
|
+
"test": "pnpm tsc && TEST_CONFIG_PATH_PREFIX=./tests/cli/ vitest",
|
|
39
|
+
"build": "rm -rf ./dist && tsx build.ts && cp package.json dist/ && attw --pack dist",
|
|
40
|
+
"build:dev": "rm -rf ./dist && tsx build.dev.ts && tsc -p tsconfig.cli-types.json && chmod +x ./dist/index.cjs",
|
|
41
|
+
"pack": "cp package.json README.md dist/ && (cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
|
|
42
|
+
"tsc": "tsc -p tsconfig.build.json --noEmit",
|
|
43
|
+
"publish": "npm publish package.tgz"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@drizzle-team/brocli": "^0.10.2",
|
|
47
|
+
"@esbuild-kit/esm-loader": "^2.5.5",
|
|
48
|
+
"dmdb": "^1.0.48286",
|
|
49
|
+
"esbuild": "^0.25.4",
|
|
50
|
+
"tsx": "^4.21.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@arethetypeswrong/cli": "^0.15.3",
|
|
54
|
+
"@aws-sdk/client-rds-data": "^3.556.0",
|
|
55
|
+
"@cloudflare/workers-types": "^4.20230518.0",
|
|
56
|
+
"@electric-sql/pglite": "^0.2.12",
|
|
57
|
+
"@hono/node-server": "^1.9.0",
|
|
58
|
+
"@hono/zod-validator": "^0.2.1",
|
|
59
|
+
"@libsql/client": "^0.10.0",
|
|
60
|
+
"@neondatabase/serverless": "^0.9.1",
|
|
61
|
+
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
62
|
+
"@planetscale/database": "^1.16.0",
|
|
63
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
64
|
+
"@types/dockerode": "^3.3.28",
|
|
65
|
+
"@types/glob": "^8.1.0",
|
|
66
|
+
"@types/json-diff": "^1.0.3",
|
|
67
|
+
"@types/micromatch": "^4.0.9",
|
|
68
|
+
"@types/minimatch": "^5.1.2",
|
|
69
|
+
"@types/node": "^18.11.15",
|
|
70
|
+
"@types/pg": "^8.10.7",
|
|
71
|
+
"@types/pluralize": "^0.0.33",
|
|
72
|
+
"@types/semver": "^7.5.5",
|
|
73
|
+
"@types/uuid": "^9.0.8",
|
|
74
|
+
"@types/ws": "^8.5.10",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
76
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
77
|
+
"@vercel/postgres": "^0.8.0",
|
|
78
|
+
"ava": "^5.1.0",
|
|
79
|
+
"better-sqlite3": "^11.9.1",
|
|
80
|
+
"bun-types": "^0.6.6",
|
|
81
|
+
"camelcase": "^7.0.1",
|
|
82
|
+
"chalk": "^5.2.0",
|
|
83
|
+
"commander": "^12.1.0",
|
|
84
|
+
"dockerode": "^4.0.6",
|
|
85
|
+
"dotenv": "^16.0.3",
|
|
86
|
+
"drizzle-kit": "0.25.0-b1faa33",
|
|
87
|
+
"drizzle-orm": "workspace:./drizzle-orm/dist",
|
|
88
|
+
"env-paths": "^3.0.0",
|
|
89
|
+
"esbuild-node-externals": "^1.9.0",
|
|
90
|
+
"eslint": "^8.57.0",
|
|
91
|
+
"eslint-config-prettier": "^9.1.0",
|
|
92
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
93
|
+
"gel": "^2.0.0",
|
|
94
|
+
"get-port": "^6.1.2",
|
|
95
|
+
"glob": "^8.1.0",
|
|
96
|
+
"hanji": "^0.0.8",
|
|
97
|
+
"hono": "^4.7.9",
|
|
98
|
+
"json-diff": "1.0.6",
|
|
99
|
+
"micromatch": "^4.0.8",
|
|
100
|
+
"minimatch": "^7.4.3",
|
|
101
|
+
"mysql2": "3.14.1",
|
|
102
|
+
"node-fetch": "^3.3.2",
|
|
103
|
+
"ohm-js": "^17.1.0",
|
|
104
|
+
"pg": "^8.11.5",
|
|
105
|
+
"pluralize": "^8.0.0",
|
|
106
|
+
"postgres": "^3.4.4",
|
|
107
|
+
"prettier": "^3.5.3",
|
|
108
|
+
"semver": "^7.7.2",
|
|
109
|
+
"superjson": "^2.2.1",
|
|
110
|
+
"tsup": "^8.3.5",
|
|
111
|
+
"typescript": "^5.6.3",
|
|
112
|
+
"uuid": "^9.0.1",
|
|
113
|
+
"vite-tsconfig-paths": "^4.3.2",
|
|
114
|
+
"vitest": "^3.1.3",
|
|
115
|
+
"ws": "^8.18.2",
|
|
116
|
+
"zod": "^3.20.2",
|
|
117
|
+
"zx": "^8.3.2"
|
|
118
|
+
},
|
|
119
|
+
"exports": {
|
|
120
|
+
".": {
|
|
121
|
+
"import": {
|
|
122
|
+
"types": "./index.d.mts",
|
|
123
|
+
"default": "./index.mjs"
|
|
124
|
+
},
|
|
125
|
+
"require": {
|
|
126
|
+
"types": "./index.d.ts",
|
|
127
|
+
"default": "./index.js"
|
|
128
|
+
},
|
|
129
|
+
"types": "./index.d.mts",
|
|
130
|
+
"default": "./index.mjs"
|
|
131
|
+
},
|
|
132
|
+
"./api": {
|
|
133
|
+
"import": {
|
|
134
|
+
"types": "./api.d.mts",
|
|
135
|
+
"default": "./api.mjs"
|
|
136
|
+
},
|
|
137
|
+
"require": {
|
|
138
|
+
"types": "./api.d.ts",
|
|
139
|
+
"default": "./api.js"
|
|
140
|
+
},
|
|
141
|
+
"types": "./api.d.mts",
|
|
142
|
+
"default": "./api.mjs"
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|