-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "cosmos-orm",
"version": "0.4.0",
"description": "A simple ORM for Cosmos DB",
"license": "MIT",
"scripts": {
"build": "tsup --dts",
"dev": "tsup --watch",
"lint": "biome check --write .",
"prepack": "pnpm run build"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"./dist/**/*"
],
"keywords": [
"cosmos",
"orm"
],
"author": "Travis Reynolds <travis@travisreynolds.dev>",
"homepage": "https://github.com/wind-apps/cosmos-orm#readme",
"repository": {
"type": "git",
"url": "https://github.com/wind-apps/cosmos-orm.git"
},
"dependencies": {
"@azure/cosmos": "^4.2.0",
"@azure/functions": "^4.6.0",
"ulidx": "^2.4.1"
},
"peerDependencies": {
"@azure/cosmos": "^4.2.0",
"@azure/functions": "^4.6.0",
"ulidx": "^2.4.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.17.10",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}