-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1006 Bytes
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
{
"name": "web-clip-cli",
"version": "0.1.0",
"description": "一键将网页保存为 Obsidian 兼容的 Markdown 文件,支持 obsidian-clipper 模板",
"keywords": [
"obsidian",
"markdown",
"cli",
"web-clipper",
"read-it-later",
"note-taking",
"knowledge-management",
"article-extractor",
"content-extractor",
"second-brain",
"zettelkasten",
"typescript",
"nodejs"
],
"license": "MIT",
"author": "",
"engines": {
"node": ">=18"
},
"bin": {
"web-clip": "./dist/cli.cjs",
"clip": "./dist/cli.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.mjs",
"dev": "node scripts/build.mjs --dev",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"dayjs": "^1.11.13",
"defuddle": "^0.18.1",
"linkedom": "^0.18.0"
},
"devDependencies": {
"@types/node": "^25.4.0",
"esbuild": "^0.25.0",
"typescript": "^5.5.4"
}
}