-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.68 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.68 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
{
"name": "knex-tiny-logger",
"version": "3.0.1",
"description": "Tiny logger for knex",
"repository": {
"type": "git",
"url": "https://github.com/khmm12/knex-tiny-logger.git"
},
"author": "Maixm Khvatalin <khmm12@gmail.com> (http://github.com/khmm12)",
"files": [
"dist"
],
"keywords": [
"knex",
"logger"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./colorful": {
"import": {
"types": "./dist/colorful.d.mts",
"default": "./dist/colorful.mjs"
},
"require": {
"types": "./dist/colorful.d.cts",
"default": "./dist/colorful.cjs"
},
"default": "./dist/colorful.mjs"
},
"./pino": {
"import": {
"types": "./dist/pino.d.mts",
"default": "./dist/pino.mjs"
},
"require": {
"types": "./dist/pino.d.cts",
"default": "./dist/pino.cjs"
},
"default": "./dist/pino.mjs"
},
"./tracer": {
"import": {
"types": "./dist/tracer.d.mts",
"default": "./dist/tracer.mjs"
},
"require": {
"types": "./dist/tracer.d.cts",
"default": "./dist/tracer.cjs"
},
"default": "./dist/tracer.mjs"
}
},
"engines": {
"node": ">=20",
"bun": ">=1.3"
},
"packageManager": "pnpm@11.0.6+sha512.97f906e1da2bedac3df83cadae04b4753a130092dd49d55cd36825ad3e623e9df3f97754f8f259e699172a360fac569acf2f908e7732bdae3eddb2dcf7e121fd",
"sideEffects": false,
"scripts": {
"build": "unbuild",
"check": "pnpm run build && pnpm run typecheck && pnpm run test:types && pnpm run lint && pnpm run test:unit && pnpm run test:integration",
"format": "biome format --write .",
"lint": "biome check .",
"test": "pnpm run build && pnpm run test:unit && pnpm run test:integration",
"test:integration": "node --test test/integration/*.test.ts",
"test:runtime:node": "node --test test/runtime/node/*.test.mjs",
"test:runtime:bun": "bun test test/runtime/bun",
"test:types": "tsc -p tsconfig.types.json",
"test:unit": "node --test src/*.test.ts",
"typecheck": "tsc -b"
},
"peerDependencies": {
"knex": "^3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/node": "^24",
"knex": "^3.1.0",
"pino": "^10.3.1",
"sqlite3": "^6.0.1",
"typescript": "^5.9.0",
"unbuild": "^3.6.1"
}
}