-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "academic-rss-reader",
"version": "1.3.0",
"description": "面向学术文献初筛的 Obsidian 桌面 RSS 阅读与个性化推荐插件。",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"package": "npm run build && node scripts/package-release.mjs",
"lint": "eslint .",
"check:i18n": "node scripts/check-i18n.mjs",
"test": "vitest run",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"rss",
"reader",
"research",
"recommendation"
],
"author": "ApoclyReol",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.15.17",
"@types/sql.js": "^1.4.11",
"esbuild": "0.28.1",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.4.0",
"globals": "^17.6.0",
"happy-dom": "^20.11.1",
"jiti": "^2.6.1",
"obsidian": "1.13.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.10"
},
"dependencies": {
"fast-xml-parser": "^5.10.1",
"sql.js": "^1.14.1"
}
}