-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 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
71
72
{
"name": "@valyu/cli",
"version": "1.2.3",
"description": "The search CLI for knowledge workers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/valyuAI/valyu-cli.git"
},
"homepage": "https://github.com/valyuAI/valyu-cli#readme",
"keywords": [
"cli",
"valyu",
"search",
"ai",
"research",
"api"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.0.0",
"files": [
"dist/cli.cjs",
"skills/"
],
"type": "module",
"bin": {
"valyu": "./dist/cli.cjs"
},
"scripts": {
"dev": "tsx src/cli.ts",
"dev:watch": "tsx --watch src/cli.ts",
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"sync-skill-version": "node scripts/sync-skill-version.mjs",
"version": "pnpm run sync-skill-version && git add skills/valyu-cli/SKILL.md src/lib/version.ts",
"prepublishOnly": "pnpm run sync-skill-version && pnpm build && pnpm typecheck && pnpm test",
"prepack": "pnpm run sync-skill-version && pnpm build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "0.10.0",
"@commander-js/extra-typings": "14.0.0",
"commander": "14.0.3",
"marked": "^15.0.0",
"marked-terminal": "^7.2.0",
"picocolors": "1.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@biomejs/biome"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/marked-terminal": "^6.0.0",
"@types/node": "25.5.0",
"@yao-pkg/pkg": "^6.14.1",
"esbuild": "0.27.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.1.1"
}
}