-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 960 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 960 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
{
"name": "dbn-cli",
"version": "0.6.1",
"description": "A lightweight terminal-based database browser",
"repository": "https://github.com/amio/dbn-cli",
"type": "module",
"main": "src/index.ts",
"bin": {
"dbn": "bin/dbn.ts"
},
"scripts": {
"test": "node --test --experimental-strip-types src/**/*.test.ts src/*.test.ts",
"test:watch": "node --test --watch --experimental-strip-types src/**/*.test.ts src/*.test.ts",
"test:coverage": "node --test --experimental-test-coverage --experimental-strip-types src/**/*.test.ts src/*.test.ts",
"dev": "node bin/dbn.ts"
},
"keywords": [
"database",
"sqlite",
"cli",
"terminal",
"browser",
"tui"
],
"author": "Amio <amio.cn@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=24"
},
"files": [
"bin/",
"src/"
],
"devDependencies": {
"@types/node": "^24.10.9"
},
"dependencies": {
"string-width": "^8.2.0"
}
}