-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
{
"name": "fireargs",
"version": "0.0.0-dev",
"description": "Build CLIs from zod schemas",
"keywords": [
"cli",
"commander",
"fireargs",
"llm",
"mcp",
"zod"
],
"license": "MIT",
"author": "Evgeny Karev",
"repository": "https://github.com/datisthq/fireargs",
"files": [
"build"
],
"type": "module",
"sideEffects": false,
"exports": "./build/index.js",
"scripts": {
"build": "tsgo",
"deps": "ncu -u",
"docs:build": "livemark build",
"docs:start": "livemark start",
"format": "vp fmt",
"lint": "vp fmt --check && vp lint",
"prepare": "lefthook install",
"release": "pnpm publish --access public --ignore-scripts --no-git-checks",
"test": "pnpm lint && pnpm type && pnpm unit",
"type": "tsgo --noEmit",
"unit": "vp test",
"leaks": "gitleaks git --config=.gitleaks.toml --verbose --redact",
"scan": "pnpm leaks && pnpm vulns",
"vers": "pnpm version --no-git-tag-version",
"vulns": "semgrep --config=p/typescript --config=p/nodejs --config=p/owasp-top-ten --config=p/secrets --exclude=\"**/fixtures/**\" --metrics=off"
},
"dependencies": {
"commander": "^14.0.3",
"zod": "^4.4.1"
},
"devDependencies": {
"@plausible-analytics/tracker": "^0.4.4",
"@semantic-release/exec": "7.1.0",
"@tanstack/react-router": "1.168.1",
"@tanstack/react-start": "1.167.2",
"@types/node": "24.2.0",
"@typescript/native-preview": "7.0.0-dev.20260316.1",
"@vitest/coverage-v8": "4.1.5",
"conventional-changelog-conventionalcommits": "9.1.0",
"lefthook": "2.1.1",
"livemark": "0.13.0",
"lucide-react": "0.577.0",
"npm-check-updates": "18.0.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"semantic-release": "24.2.9",
"tempy": "3.2.0",
"vite-plus": "0.1.19",
"wrangler": "4.85.0"
},
"engines": {
"node": "^24.0.0",
"pnpm": "^11.0.0"
},
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499"
}