-
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.75 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.75 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.2.4",
"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 <devs@put.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/putdotio/putio-cli.git"
},
"bin": {
"putio": "./dist/bin.mjs"
},
"files": [
"AGENTS.md",
"CONTRIBUTING.md",
"dist",
"docs",
"SECURITY.md",
"skills"
],
"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.mts",
"check": "vp check .",
"coverage": "vp test --coverage",
"dev": "vp pack --watch",
"prepare": "node ./scripts/prepare-effect.mts",
"prepack": "vp pack",
"smoke:pack": "node ./scripts/smoke-packed-install.mts",
"test": "vp test",
"prepublishOnly": "npm run build",
"verify:sea": "node ./scripts/verify-sea.mjs",
"verify": "vp check . && vp run smoke:pack && vp test && vp test --coverage"
},
"dependencies": {
"@effect/platform-node": "4.0.0-beta.70",
"@putdotio/sdk": "^9.3.0",
"cli-table3": "^0.6.5",
"effect": "4.0.0-beta.70",
"i18next": "^26.2.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.6",
"esbuild": "^0.28.0",
"is-ci": "^4.1.0",
"postject": "^1.0.0-alpha.6",
"typescript": "^6.0.3",
"vite-plus": "0.1.22"
},
"engines": {
"node": ">=24.14.0"
},
"packageManager": "pnpm@11.2.2"
}