-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "cb",
"version": "0.1.0",
"description": "CLI Clipboard Manager",
"type": "module",
"main": "./dist/bin/index.js",
"scripts": {
"gethelp": "cb --help | xclip -sel clipboard",
"tracker:gethelp": "cb tracker --help | xclip -sel clipboard",
"build:dev": "rm -rf dist && tsc; chmod +x ./dist/bin/index.js",
"build:prod": "rm -rf dist && tsc && chmod +x ./dist/bin/index.js",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvnloughead/cli-clipboard-manager.git"
},
"keywords": [
"CLI",
"Clipboard",
"Productivity"
],
"author": "Kevin Loughead",
"license": "MIT",
"bugs": {
"url": "https://github.com/kvnloughead/cli-clipboard-manager/issues"
},
"homepage": "https://github.com/kvnloughead/cli-clipboard-manager#readme",
"bin": {
"cb": "./dist/bin/index.js"
},
"dependencies": {
"@types/promise-fs": "^2.1.5",
"chalk": "^5.3.0",
"clipboardy": "^3.0.0",
"dotenv": "^16.0.3",
"find-up": "^6.3.0",
"promise-fs": "^2.1.1",
"prompt": "^1.3.0",
"winston": "^3.11.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/clipboardy": "^2.0.1",
"@types/node": "^20.9.2",
"@types/prompt": "^1.1.8",
"@types/yargs": "^17.0.31",
"typescript": "^5.2.2"
}
}