@m2k-5f/pgtx 1.4.0 → 1.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +48 -39
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
## Pgtx 🚀
|
|
2
2
|
|
|
3
|
+
[](https://github.com/M2K-5F/pgtx/actions/workflows/tests.yaml)
|
|
4
|
+
|
|
3
5
|
A lightweight, **high-performance** SQL query builder for `node-postgres` (pg).
|
|
4
6
|
Experience ORM-like convenience (auto-inserts, updates, recursive fragments) with the transparency and speed of raw SQL.
|
|
5
7
|
|
package/package.json
CHANGED
|
@@ -1,39 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@m2k-5f/pgtx",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"description": "Lightweight, high-performance SQL toolkit for node-postgres",
|
|
5
|
-
"files": [
|
|
6
|
-
"dist",
|
|
7
|
-
"README.md"
|
|
8
|
-
],
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "tsc",
|
|
11
|
-
"prepublishOnly": "npm run build",
|
|
12
|
-
"test": "node --import tsx --test
|
|
13
|
-
},
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git://github.com/M2K-5F/pgtx.git"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@m2k-5f/pgtx",
|
|
3
|
+
"version": "1.4.11",
|
|
4
|
+
"description": "Lightweight, high-performance SQL toolkit for node-postgres",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"README.md"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"prepublishOnly": "npm run build",
|
|
12
|
+
"test": "node --import tsx --test $(find tests -name '*.test.ts')"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git://github.com/M2K-5F/pgtx.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"sql",
|
|
20
|
+
"postgres",
|
|
21
|
+
"pg",
|
|
22
|
+
"query-builder",
|
|
23
|
+
"typescript",
|
|
24
|
+
"transactions",
|
|
25
|
+
"prepared-statements"
|
|
26
|
+
],
|
|
27
|
+
"author": "M2K-5F",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"homepage": "https://github.com/M2K-5F/pgtx",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/M2K-5F/pgtx/issues"
|
|
32
|
+
},
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": "./dist/index.js",
|
|
36
|
+
"require": "./dist/index.js",
|
|
37
|
+
"types": "./dist/index.d.ts"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"pg": "^8.11.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/pg": "^8.11.0",
|
|
45
|
+
"tsx": "^4.21.0",
|
|
46
|
+
"typescript": "^5.0.0"
|
|
47
|
+
}
|
|
48
|
+
}
|