-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "pg-error-enum",
"version": "0.7.3",
"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",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "[email protected]+sha512.341db9396b6e289fecc30cd7ab3af65060e05ebff4b3b47547b278b9e67b08f485ecd8c79006b405446262142c7a38154445ef7f17c1d5d1de7d90bf9ce7054d",
"scripts": {
"sync": "tsx 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",
"prepublishOnly": "npm run build && npm run test"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@nihalgonsalves/esconfig": "^0.10.16",
"@types/node": "^18",
"eslint": "^9.16.0",
"knip": "^5.38.3",
"lefthook": "^1.8.4",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"zod": "^3.23.8"
}
}