-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "pg-error-enum",
"type": "module",
"version": "1.0.1",
"description": "TypeScript Enum for Postgres Errors with no runtime dependencies",
"author": "Nihal Gonsalves <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nihalgonsalves/pg-error-enum.git"
},
"bugs": {
"url": "https://github.com/nihalgonsalves/pg-error-enum/issues"
},
"homepage": "https://github.com/nihalgonsalves/pg-error-enum#readme",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"packageManager": "[email protected]+sha512.5a0afa1d4c1d844b3447ee3319633797bcd6385d9a44be07993ae52ff4facabccafb4af5dcd1c2f9a94ac113e5e9ff56f6130431905884414229e284e37bb7c9",
"scripts": {
"sync": "node --experimental-strip-types bin/sync.ts",
"clean": "rm -rf ./dist/",
"typecheck": "tsc --noEmit --project tsconfig.json && tsc --noEmit --project tsconfig.build.json",
"build": "tsc --build tsconfig.build.json",
"lint:check": "eslint",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"test": "node bin/test.js"
},
"files": [
"dist/**/*"
],
"engines": {
"node": "^20.19.0 || ^22.12.0 || >23.0.0"
},
"devDependencies": {
"@nihalgonsalves/esconfig": "^0.11.0",
"@types/node": "^18",
"eslint": "^9.22.0",
"knip": "^5.45.0",
"lefthook": "^1.11.3",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"zod": "^3.24.2"
}
}