-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
56
57
58
59
60
{
"name": "cclip",
"version": "3.1.0",
"description": "A simple CLI tool to copy text to clipboard",
"license": "MIT",
"author": "ru44",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ru44/CloudyClipy.git"
},
"bugs": {
"url": "https://github.com/ru44/CloudyClipy/issues"
},
"homepage": "https://github.com/ru44/CloudyClipy#readme",
"scripts": {
"lint": "eslint",
"lintfix": "eslint --fix",
"dev": "tsx ./src/main.ts",
"build": "tsup",
"release": "pnpm build && changeset publish"
},
"keywords": [
"cli",
"nodeJs",
"javascript",
"typescript",
"copy",
"clipboard"
],
"dependencies": {
"axios": "^1.7.9",
"clipboardy": "^4.0.0",
"shelljs": "^0.8.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/shelljs": "^0.8.15",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"bin": {
"cclip": "dist/main.js"
}
}