-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 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
{
"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.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
"scripts": {
"sync": "node --experimental-strip-types bin/sync.mts",
"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.20",
"@types/node": "^18",
"eslint": "^9.20.0",
"knip": "^5.43.6",
"lefthook": "^1.10.10",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"zod": "^3.24.1"
}
}