mondoo 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "mondoo",
3
+ "version": "0.1.0",
4
+ "description": "Mongoose-compatible ODM for Cloudflare Durable Objects with TypeScript-first $ API",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.mjs",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format cjs,esm --dts",
21
+ "dev": "tsup src/index.ts --format esm --watch",
22
+ "test": "vitest",
23
+ "test:run": "vitest run",
24
+ "typecheck": "tsc --noEmit",
25
+ "lint": "eslint src test",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "keywords": [
29
+ "mongoose",
30
+ "mongodb",
31
+ "odm",
32
+ "cloudflare",
33
+ "durable-objects",
34
+ "workers",
35
+ "typescript",
36
+ "zod",
37
+ "schema",
38
+ "validation"
39
+ ],
40
+ "author": "",
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/nathanclevenger/mondoo"
45
+ },
46
+ "peerDependencies": {
47
+ "mondodb": ">=0.1.0"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^22.0.0",
51
+ "tsup": "^8.0.0",
52
+ "typescript": "^5.7.0",
53
+ "vitest": "^2.0.0"
54
+ }
55
+ }