-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@putdotio/cli",
"version": "1.0.7",
"description": "Agent-first CLI for the put.io API.",
"homepage": "https://github.com/putdotio/putio-cli#readme",
"bugs": {
"url": "https://github.com/putdotio/putio-cli/issues"
},
"license": "MIT",
"author": "put.io <ui@put.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/putdotio/putio-cli.git"
},
"bin": {
"putio": "./dist/bin.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./bin": "./dist/bin.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"build:sea": "node ./scripts/build-sea.mjs",
"check": "vp check .",
"coverage": "vp test --coverage",
"dev": "vp pack --watch",
"smoke:pack": "node ./scripts/smoke-packed-install.mjs",
"test": "vp test",
"prepublishOnly": "npm run build",
"verify:sea": "node ./scripts/verify-sea.mjs",
"verify": "vp check . && vp pack && vp test && vp test --coverage"
},
"dependencies": {
"@effect/cli": "^0.73.2",
"@effect/platform": "0.94.5",
"@effect/platform-node": "0.104.1",
"@putdotio/sdk": "^9.1.0",
"cli-table3": "^0.6.5",
"effect": "3.19.19",
"i18next": "^25.5.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.0",
"esbuild": "^0.27.0",
"postject": "^1.0.0-alpha.6",
"typescript": "^5.9.3",
"vite-plus": "0.1.12"
},
"engines": {
"node": ">=24.14.0 <25"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.12",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.12"
}
}
}