-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@kud/pcloud-cli",
"version": "1.2.5",
"description": "CLI tool for pCloud file operations — list, restore from trash and rewind",
"homepage": "https://kud.io/projects/pcloud-cli",
"main": "dist/cli.js",
"bin": {
"pcloud": "./dist/cli.js"
},
"scripts": {
"build": "npm run clean && tsc",
"start": "node dist/cli.js",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=24"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/pcloud-cli.git"
},
"type": "module",
"devDependencies": {
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"tsx": "4.21.0",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"dependencies": {
"@kud/ink-ui": "0.10.1",
"@kud/pcloud": "1.2.0",
"@kud/pcloud-ink": "2.0.8",
"commander": "14.0.3",
"dotenv": "17.4.2",
"ink": "7.0.1",
"react": "19.2.5"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}