-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 971 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 971 Bytes
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": "@anclatechs/sql-buns",
"version": "1.0.11",
"description": "Lightweight SQL utility for Node.js (MySQL, PostgreSQL, SQLite) with raw queries",
"main": "src/dist.js",
"types": "src/dist.d.ts",
"exports": {
".": "./src/dist.js",
"./errors": "./src/errors.js",
"./functions": "./src/functions.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnclaTechs/sql-buns.git"
},
"keywords": [
"sql",
"postgres",
"mysql",
"sqlite",
"node",
"database",
"anclatechs"
],
"scripts": {
"test:functions": "node test/index.js",
"test": "npm run test:functions && exit 1"
},
"author": "Ancla Technologies (AnclaTechs)",
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"mysql2": "^3.9.7",
"pg": "^8.11.5",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"dotenv": "^17.2.1",
"typescript": "^5.9.2"
}
}