forked from ankane/pgslice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1007 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1007 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
45
46
{
"name": "pgslice",
"version": "0.1.0",
"description": "Postgres table partitioning utility",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"pgslice": "./dist/bin/pgslice.js"
},
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/src/testing/**"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"clipanion": "^4.0.0-rc.4",
"slonik": "^46.0.0",
"slonik-interceptor-query-logging": "^47.3.2",
"typanion": "^3.14.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"dotenv": "^16.4.7",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}