-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "mongo-error-codes",
"version": "1.2.0",
"type": "module",
"repository": "https://github.com/dmltdev/mongo-error-codes",
"description": "A minimal library of MongoDB error codes, names, and helper utilities for error handling, logging, and developer tools.",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"build:size": "pnpm build && echo \"Raw: $(du -h dist/index.js | cut -f1)\" && echo \"Gzipped: $(gzip -c dist/index.js | wc -c | numfmt --to=iec)\"",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"mongodb",
"error codes",
"errors",
"database",
"typescript",
"nodejs"
],
"author": "dmltdev <dmltdev@proton.me>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@rslib/core": "0.17.0",
"@types/node": "22.18.12",
"@vitest/browser": "4.0.6",
"@vitest/coverage-v8": "4.0.6",
"typescript": "5.9.3",
"vitest": "4.0.6"
}
}