@putdotio/cli 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@putdotio/cli",
3
+ "version": "1.0.1",
4
+ "description": "Agent-first CLI for the put.io API.",
5
+ "homepage": "https://github.com/putdotio/putio-cli#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/putdotio/putio-cli/issues"
8
+ },
9
+ "license": "MIT",
10
+ "author": "put.io <ui@put.io>",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/putdotio/putio-cli.git"
14
+ },
15
+ "bin": {
16
+ "putio": "./dist/bin.mjs"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "type": "module",
22
+ "sideEffects": false,
23
+ "exports": {
24
+ ".": "./dist/index.mjs",
25
+ "./bin": "./dist/bin.mjs",
26
+ "./package.json": "./package.json"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "scripts": {
32
+ "build": "vp pack",
33
+ "build:sea": "node ./scripts/build-sea.mjs",
34
+ "check": "vp check .",
35
+ "checksums:sea": "node ./scripts/write-sea-checksums.mjs",
36
+ "coverage": "vitest run --coverage",
37
+ "dev": "vp pack --watch",
38
+ "smoke:pack": "node ./scripts/smoke-packed-install.mjs",
39
+ "test": "vitest run",
40
+ "prepublishOnly": "npm run build",
41
+ "verify:sea": "node ./scripts/verify-sea.mjs",
42
+ "verify": "pnpm run check && pnpm run build && pnpm run test && pnpm run coverage"
43
+ },
44
+ "dependencies": {
45
+ "@effect/cli": "^0.73.2",
46
+ "@effect/platform": "0.94.5",
47
+ "@effect/platform-node": "0.104.1",
48
+ "@putdotio/sdk": "^9.1.0",
49
+ "cli-table3": "^0.6.5",
50
+ "effect": "3.19.19",
51
+ "i18next": "^25.5.2"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^24.0.0",
55
+ "@vitest/coverage-v8": "^4.1.0",
56
+ "esbuild": "^0.27.0",
57
+ "postject": "^1.0.0-alpha.6",
58
+ "typescript": "^5.9.3",
59
+ "vite-plus": "0.1.11",
60
+ "vitest": "^4.1.0"
61
+ },
62
+ "engines": {
63
+ "node": ">=24.14.0 <25"
64
+ },
65
+ "packageManager": "pnpm@10.32.1"
66
+ }