-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "web-access-cli",
"version": "0.1.0",
"description": "Agent-neutral web search and content extraction CLI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Juexe/web-access-cli.git"
},
"homepage": "https://github.com/Juexe/web-access-cli#readme",
"bugs": {
"url": "https://github.com/Juexe/web-access-cli/issues"
},
"keywords": [
"cli",
"web-search",
"content-extraction",
"agent"
],
"type": "module",
"bin": {
"web-access": "./dist/cli.js"
},
"files": [
"dist",
"schemas",
"README.md",
"README_CN.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"engines": {
"node": ">=22.19.0"
},
"packageManager": "pnpm@11.16.0",
"scripts": {
"build": "tsc -p tsconfig.build.json && node scripts/write-schemas.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test test/**/*.test.ts",
"lint": "biome check .",
"format": "biome format --write .",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"pack:check": "pnpm build && pnpm pack --pack-destination .artifacts"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"commander": "^15.0.0",
"linkedom": "^0.18.12",
"open": "^11.0.0",
"turndown": "^7.2.0",
"typebox": "^1.3.11",
"undici": "^8.10.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@types/node": "^24.0.0",
"@types/turndown": "^5.0.6",
"tsx": "^4.20.0",
"typescript": "^5.9.0"
}
}