@dsqlbase/migration 0.1.0

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 (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +47 -0
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @dsqlbase/migration
2
+
3
+ Schema migration utils for dsqlbase toolkit
4
+
5
+ > [!NOTE]
6
+ > This is an internal package within the [dsqlbase](https://github.com/slsdotdev/dsqlbase) monorepo.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install @dsqlbase/migration
12
+ ```
13
+
14
+ ## License
15
+
16
+ MIT.
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@dsqlbase/migration",
3
+ "version": "0.1.0",
4
+ "description": "Migration tools for DSQLBase",
5
+ "sideEffects": false,
6
+ "type": "module",
7
+ "license": "MIT",
8
+ "author": {
9
+ "name": "sls.dev",
10
+ "email": "dev@sls.dev",
11
+ "url": "https://www.sls.dev"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "homepage": "https://www.sls.dev",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/slsdotdev/dsqlbase.git",
20
+ "directory": "packages/migration"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/slsdotdev/dsqlbase/issues"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "CHANGELOG.md",
29
+ "../../LICENSE"
30
+ ],
31
+ "main": "dist/index.js",
32
+ "types": "dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "default": "./dist/index.js",
36
+ "types": "./dist/index.d.ts"
37
+ }
38
+ },
39
+ "scripts": {
40
+ "build": "tsc -b",
41
+ "test": "vitest run",
42
+ "lint": "eslint src --ext .ts"
43
+ },
44
+ "dependencies": {
45
+ "@dsqlbase/core": "^0.1.0"
46
+ }
47
+ }