@stingerloom/orm 0.1.0 → 0.1.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 +10 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stingerloom/orm",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A standalone, framework-agnostic TypeScript ORM that can be used with any Node.js framework",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,7 +30,6 @@
30
30
  "database",
31
31
  "decorator",
32
32
  "multi-tenancy",
33
- "typeorm-alternative",
34
33
  "stingerloom"
35
34
  ],
36
35
  "scripts": {
@@ -50,9 +49,15 @@
50
49
  "better-sqlite3": ">=9.0.0"
51
50
  },
52
51
  "peerDependenciesMeta": {
53
- "mysql2": { "optional": true },
54
- "pg": { "optional": true },
55
- "better-sqlite3": { "optional": true }
52
+ "mysql2": {
53
+ "optional": true
54
+ },
55
+ "pg": {
56
+ "optional": true
57
+ },
58
+ "better-sqlite3": {
59
+ "optional": true
60
+ }
56
61
  },
57
62
  "devDependencies": {
58
63
  "@types/better-sqlite3": "^7.6.13",