-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.19 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "monarch-orm",
"version": "0.13.2",
"description": "Type safe Object Document Mapper (ODM) for MongoDB",
"private": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"./types": {
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.cjs"
},
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.mjs"
}
},
"./operators": {
"require": {
"types": "./dist/operators/index.d.ts",
"default": "./dist/operators/index.cjs"
},
"import": {
"types": "./dist/operators/index.d.ts",
"default": "./dist/operators/index.mjs"
}
}
},
"scripts": {
"build": "tsdown && tsc",
"release": "pnpm run build && changeset publish",
"check": "tsc --noEmit && pnpm run format",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"watch": "vitest",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"pnpm": {
"onlyBuiltDependencies": [
"mongodb-memory-server"
]
},
"keywords": [
"mongodb",
"odm",
"orm",
"typescript",
"mongo",
"type-safe",
"db",
"mongoose"
],
"author": "Prince Gbalam <princecodes247@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/monarch-orm/monarch.git"
},
"bugs": {
"url": "https://github.com/monarch-orm/monarch/issues"
},
"homepage": "https://github.com/monarch-orm/monarch#readme",
"peerDependencies": {
"mongodb": ">= 7.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.0.16",
"mongodb-memory-server": "^11.0.1",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"tsdown": "^0.18.3",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}