-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.46 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.46 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
{
"name": "sqlkit",
"version": "1.0.17",
"description": "A lightweight SQL builder for TypeScript",
"license": "MIT",
"author": {
"name": "KingRayhan",
"url": "https://www.rayhan.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/sqlkit-dev/sqlkit"
},
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll --sourcemap --clean-dist --minify",
"tinker": "npx tsx watch src/tinker.ts",
"test": "jest --testPathPattern=repository --runInBand",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "npx typedoc src/index.ts"
},
"keywords": [
"sql",
"query builder",
"orm",
"database",
"typescript"
],
"devDependencies": {
"@faker-js/faker": "^9.7.0",
"@types/jest": "^29.5.14",
"@types/pg": "^8.11.12",
"better-sqlite3": "^11.10.0",
"jest": "^29.7.0",
"pg": "^8.14.1",
"pkgroll": "^2.12.1",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2"
},
"peerDependencies": {
"better-sqlite3": "",
"mysql": "^2.18.1",
"mysql2": "^3.14.1",
"pg": "^8.16.0",
"sqlite3": "^5.1.7"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
},
"sqlite3": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"mysql2": {
"optional": true
},
"mysql": {
"optional": true
}
}
}