-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 KB
/
package.json
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
{
"name": "monarch-orm",
"version": "0.6.1",
"description": "Type safe Object Document Mapper (ODM) for MongoDB",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "shx rm -rf dist && npm run check && tsup src/index.ts --format esm,cjs --dts",
"release": "npm run build && changeset publish",
"check": "npm run lint && npm run format && tsc --noEmit",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"watch": "vitest",
"test": "vitest run"
},
"keywords": [
"mongodb",
"odm",
"orm",
"typescript",
"mongo",
"type-safe",
"db",
"mongoose"
],
"author": "Prince Gbalam <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/princecodes247/monarch.git"
},
"bugs": {
"url": "https://github.com/princecodes247/monarch/issues"
},
"homepage": "https://github.com/princecodes247/monarch#readme",
"dependencies": {
"mongodb": "^6.6.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@changesets/cli": "^2.27.9",
"@types/node": "^20.12.12",
"mongodb-memory-server": "^9.4.1",
"shx": "^0.3.4",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
}
}