-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 KB
/
package.json
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
{
"name": "@eighty4/databases",
"version": "0.0.4-19",
"description": "APIs for database-driven developer experience",
"keywords": [
"cassandra",
"cockroachdb",
"development",
"devtool",
"docker",
"elasticsearch",
"mongodb",
"mssql",
"mysql",
"postgres",
"postgresql",
"schema",
"scylladb",
"sqlserver"
],
"license": "BSD-3-Clause",
"type": "module",
"bin": "lib/cli/cli.js",
"main": "lib/exports.js",
"types": "lib/exports.d.ts",
"scripts": {
"build": "tsc --build --clean && tsc --build",
"build:watch": "pnpm build --watch",
"dev": "node lib/cli/cli.js",
"check": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"@types/dockerode": "^3.3.31",
"@types/node": "^22.7.4",
"commander": "^12.1.0",
"dockerode": "^4.0.2"
},
"devDependencies": {
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]",
"files": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"pnpm-lock.yaml",
"README.md",
"tsconfig.json",
"src/**/*.ts",
"lib/**/*.d.ts",
"lib/**/*.js"
]
}