@pearl-framework/database 0.1.0 → 0.1.3

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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @pearl-framework/database@0.1.0 build /Users/sharvari/Desktop/Sharvari's Work Station/pearljs/packages/database
3
+ > @pearl-framework/database@0.1.1 build /Users/sharvari/Desktop/Sharvari's Work Station/Pearljs/pearl.js/packages/database
4
4
  > tsc
5
5
 
package/package.json CHANGED
@@ -1,29 +1,11 @@
1
1
  {
2
2
  "name": "@pearl-framework/database",
3
- "version": "0.1.0",
4
- "description": "Pearl.js database — Drizzle ORM integration, migrations, and connection management",
5
- "main": "./dist/index.js",
6
- "types": "./dist/index.d.ts",
7
- "exports": {
8
- ".": {
9
- "types": "./dist/index.d.ts",
10
- "import": "./dist/index.js",
11
- "default": "./dist/index.js"
12
- }
13
- },
14
- "typesVersions": {
15
- "*": {
16
- "*": [
17
- "./dist/index.d.ts"
18
- ]
19
- }
20
- },
3
+ "version": "0.1.3",
21
4
  "dependencies": {
22
- "drizzle-orm": "^0.30.0",
23
- "drizzle-kit": "^0.20.0",
24
5
  "@pearl-framework/core": "0.1.0"
25
6
  },
26
7
  "peerDependencies": {
8
+ "drizzle-orm": "^0.30.0",
27
9
  "pg": "^8.11.0",
28
10
  "mysql2": "^3.9.0",
29
11
  "better-sqlite3": "^9.4.0"
@@ -44,22 +26,8 @@
44
26
  "@types/pg": "^8.11.0",
45
27
  "@types/better-sqlite3": "^7.6.0",
46
28
  "typescript": "^5.4.0",
47
- "vitest": "^1.6.0"
48
- },
49
- "publishConfig": {
50
- "access": "public",
51
- "registry": "https://registry.npmjs.org"
52
- },
53
- "repository": {
54
- "type": "git",
55
- "url": "https://github.com/skd09/pearl.js.git",
56
- "directory": "packages/database"
57
- },
58
- "scripts": {
59
- "build": "tsc",
60
- "dev": "tsc --watch",
61
- "test": "vitest run",
62
- "typecheck": "tsc --noEmit",
63
- "clean": "rm -rf dist"
29
+ "vitest": "^1.6.0",
30
+ "drizzle-kit": "^0.20.0",
31
+ "drizzle-orm": "^0.30.0"
64
32
  }
65
33
  }