-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.28 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "postgrejs",
"description": "Professional PostgreSQL client NodeJS",
"version": "2.22.9",
"author": "Panates",
"license": "MIT",
"private": true,
"dependencies": {
"@jsopen/objects": "^2.0.2",
"doublylinked": "^2.5.6",
"lightning-pool": "^4.12.0",
"postgres-bytea": "^3.0.0",
"power-tasks": "^1.11.1",
"putil-promisify": "^1.10.1",
"putil-varhelpers": "^1.6.5",
"tslib": "^2.8.1"
},
"devDependencies": {
"@panates/eslint-config": "^2.0.6",
"@panates/eslint-config-ts": "^2.0.6",
"@panates/tsconfig": "^2.0.6",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.3",
"@swc/helpers": "^0.5.17",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"auto-changelog": "^2.5.0",
"c8": "^10.1.3",
"dotenv": "^17.2.3",
"expect": "^30.2.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"madge": "^8.0.0",
"mocha": "^11.7.5",
"pg": "^8.16.3",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"ts-cleanup": "^1.3.0",
"typescript": "^5.9.3"
},
"scripts": {
"compile": "tsc -b tsconfig-build-esm.json --noEmit",
"clean": "npm run clean:src && npm run clean:dist",
"clean:dist": "rimraf build coverage",
"clean:src": "ts-cleanup -s src --all | ts-cleanup -s test",
"prebuild": "npm run clean:dist && npm run lint",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig-build-cjs.json && cp support/package.cjs.json ./build/cjs/package.json",
"build:esm": "tsc -b tsconfig-build-esm.json && cp support/package.esm.json ./build/esm/package.json",
"postbuild": "npm run postbuild:copyfiles && node ./support/postbuild.cjs",
"postbuild:copyfiles": "cp LICENSE README.md CHANGELOG.md ./build && cp ./support/package.esm.json ./build/esm/package.json",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"format": "prettier . --write --log-level=warn",
"precover": "rimraf coverage",
"check": "madge --circular src/**",
"test": "mocha",
"precitest": "rimraf coverage",
"citest": "c8 mocha",
"qc": "npm run lint && npm run check",
"version": "auto-changelog -p && git add CHANGELOG.md",
"prepare": "husky || true"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./types/index.d.cts",
"default": "./cjs/index.js"
},
"default": "./esm/index.js"
},
"./package.json": "./package.json"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"homepage": "https://postgrejs.panates.com/",
"contributors": [
"Eray Hanoglu <e.hanoglu@panates.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/panates/postgrejs.git"
},
"engines": {
"node": ">=16.0"
},
"files": [
"cjs/",
"esm/",
"types/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"postgresql",
"postgres",
"postgre",
"pg",
"database",
"db",
"driver",
"client",
"backend",
"rdbms",
"sql",
"typescript",
"ts",
"esm"
],
"publishConfig": {
"access": "public"
}
}