-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "cosmox",
"version": "1.0.1",
"keywords": [
"cosmosdb",
"prisma",
"orm",
"sdk",
"nosql"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mingyang-Li/cosmox.git"
},
"homepage": "https://github.com/Mingyang-Li/cosmox#readme",
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"test:unit": "vitest --config vitest.config.unit.ts",
"test:e2e": "vitest --config vitest.config.e2e.ts",
"build": "tsup --dts",
"dev": "tsup src/index.ts --watch",
"prepare": "husky"
},
"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"
}
}
},
"packageManager": "[email protected]",
"dependencies": {
"@azure/cosmos": "4.2.0",
"neverthrow": "8.1.1",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "22.10.1",
"husky": "9.1.7",
"prettier": "3.4.2",
"tsup": "8.3.5",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}