-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1021 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1021 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
{
"name": "copybuffer",
"version": "1.0.0",
"description": "Smart clipboard manager with history, search and sync for Ubuntu developers",
"main": "dist/index.js",
"bin": {
"copybuffer": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"watch": "tsc --watch",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"clipboard",
"manager",
"ubuntu",
"history",
"search",
"gist",
"sync"
],
"author": "",
"license": "MIT",
"dependencies": {
"clipboardy": "^3.0.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"uiohook-napi": "^1.5.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0"
}
}