metal-orm 1.0.18 → 1.0.19

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 +61 -57
package/package.json CHANGED
@@ -1,57 +1,61 @@
1
- {
2
- "name": "metal-orm",
3
- "version": "1.0.18",
4
- "type": "module",
5
- "exports": {
6
- ".": {
7
- "import": "./dist/index.mjs",
8
- "require": "./dist/index.js"
9
- },
10
- "./decorators": {
11
- "import": "./dist/decorators/index.mjs",
12
- "require": "./dist/decorators/index.js"
13
- }
14
- },
15
- "files": [
16
- "dist",
17
- "src",
18
- "global.d.ts"
19
- ],
20
- "scripts": {
21
- "build": "tsup",
22
- "check": "tsc --noEmit",
23
- "test": "vitest",
24
- "test:ui": "vitest --ui",
25
- "show-sql": "node scripts/show-sql.mjs"
26
- },
27
- "peerDependencies": {
28
- "mysql2": "^3.9.0",
29
- "pg": "^8.0.0",
30
- "sqlite3": "^5.1.6",
31
- "tedious": "^16.0.0"
32
- },
33
- "peerDependenciesMeta": {
34
- "mysql2": {
35
- "optional": true
36
- },
37
- "pg": {
38
- "optional": true
39
- },
40
- "sqlite3": {
41
- "optional": true
42
- },
43
- "tedious": {
44
- "optional": true
45
- }
46
- },
47
- "devDependencies": {
48
- "@vitest/ui": "^4.0.14",
49
- "mysql2": "^3.15.3",
50
- "pg": "^8.16.3",
51
- "sqlite3": "^5.1.7",
52
- "tedious": "^19.1.3",
53
- "tsup": "^8.0.0",
54
- "typescript": "^5.5.0",
55
- "vitest": "^4.0.14"
56
- }
57
- }
1
+ {
2
+ "name": "metal-orm",
3
+ "version": "1.0.19",
4
+ "type": "module",
5
+ "types": "./dist/index.d.ts",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js",
10
+ "require": "./dist/index.cjs"
11
+ },
12
+ "./decorators": {
13
+ "types": "./dist/decorators/index.d.ts",
14
+ "import": "./dist/decorators/index.js",
15
+ "require": "./dist/decorators/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "src",
21
+ "global.d.ts"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "check": "tsc --noEmit",
26
+ "gen:entities": "node scripts/generate-entities.mjs",
27
+ "test": "vitest",
28
+ "test:ui": "vitest --ui",
29
+ "show-sql": "node scripts/show-sql.mjs"
30
+ },
31
+ "peerDependencies": {
32
+ "mysql2": "^3.9.0",
33
+ "pg": "^8.0.0",
34
+ "sqlite3": "^5.1.6",
35
+ "tedious": "^16.0.0"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "mysql2": {
39
+ "optional": true
40
+ },
41
+ "pg": {
42
+ "optional": true
43
+ },
44
+ "sqlite3": {
45
+ "optional": true
46
+ },
47
+ "tedious": {
48
+ "optional": true
49
+ }
50
+ },
51
+ "devDependencies": {
52
+ "@vitest/ui": "^4.0.14",
53
+ "mysql2": "^3.15.3",
54
+ "pg": "^8.16.3",
55
+ "sqlite3": "^5.1.7",
56
+ "tedious": "^19.1.3",
57
+ "tsup": "^8.0.0",
58
+ "typescript": "^5.5.0",
59
+ "vitest": "^4.0.14"
60
+ }
61
+ }