-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.27 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
{
"name": "@mocito/raindrop-cli",
"version": "0.2.4",
"description": "Agent-friendly CLI for Raindrop.io",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jvm/raindrop-cli.git"
},
"bin": {
"raindrop": "dist/cli.js"
},
"files": [
"dist/",
"docs/",
"README.md",
"LICENSE",
"SECURITY.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"skills/"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.6.0",
"scripts": {
"dev": "tsx src/cli.ts",
"build": "pnpm codegen && tsc",
"postbuild": "node scripts/ensure-bin-mode.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "tsx test/smoke/live-smoke.ts",
"codegen": "tsx scripts/codegen.ts",
"spec-lint": "tsx scripts/spec-lint.ts",
"verify-pack": "tsx scripts/verify-pack.ts",
"audit": "npm audit --omit=dev --audit-level=high",
"validate": "pnpm lint && pnpm format:check && pnpm typecheck && pnpm test && pnpm build && pnpm audit",
"security:secrets": "betterleaks dir . --no-banner --redact --exit-code=2",
"security:scripts": "command -v shellcheck >/dev/null && shellcheck $(find . -type f -name '*.sh' -not -path './node_modules/*' -not -path './.git/*') || echo 'shellcheck not installed; skipping'",
"security:workflows": "command -v actionlint >/dev/null && actionlint .github/workflows/*.yml || echo 'actionlint not installed; skipping'",
"security:local": "pnpm audit && pnpm security:secrets && pnpm security:scripts && pnpm security:workflows",
"skill:validate": "pnpm dlx skills-ref validate skills/raindrop-cli"
},
"dependencies": {
"commander": "^15.0.0",
"smol-toml": "^1.6.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.79.3",
"@earendil-works/pi-tui": "^0.79.3",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"eslint": "^10.5.0",
"eslint-plugin-security": "^4.0.1",
"lefthook": "^2.1.9",
"prettier": "^3.8.4",
"safe-regex": "^2.1.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
}
}