-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.35 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.35 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
{
"name": "snip-manager",
"version": "0.3.0",
"description": "Fast, terminal-native CLI snippet manager with TUI and SQLite/Gist sync.",
"homepage": "https://bharath-code.github.io/snip/",
"bin": {
"snip": "./bin/snip"
},
"main": "lib/cli.js",
"keywords": [
"cli",
"snippet",
"tui",
"terminal",
"manager",
"command-line",
"developer-tools",
"productivity",
"shell",
"bash",
"zsh",
"fish",
"gist",
"github",
"fuzzy-search",
"sqlite",
"json"
],
"author": "Bharath",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bharath/snip"
},
"bugs": {
"url": "https://github.com/bharath/snip/issues"
},
"engines": {
"node": ">=18"
},
"preferGlobal": true,
"scripts": {
"test": "jest",
"lint": "eslint lib/",
"smoke-sqljs": "node scripts/sqljs-smoke.js",
"prepublishOnly": "npm test"
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"commander": "^14.0.3",
"fuse.js": "^7.1.0",
"openai": "^4.28.4",
"write-file-atomic": "^7.0.0"
},
"optionalDependencies": {
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"jest": "^29.7.0",
"puppeteer": "^24.37.3",
"sql.js": "^1.12.0"
}
}