1 Star 0 Fork 0

Aooiu/vscode-ttrss

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 7.20 KB
一键复制 编辑 原始数据 按行查看 历史
Aooiu 提交于 2023-09-28 18:01 . feat: 列表添加翻页按钮
{
"name": "z-rss",
"displayName": "Z RSS",
"description": "Tiny Tiny RSS (tt-rss) for vscode",
"icon": "resources/rss.png",
"version": "1.4.0",
"license": "MIT",
"publisher": "aooiu",
"qna": "https://github.com/aooiuu/vscode-ttrss/issues",
"bugs": {
"url": "https://github.com/aooiuu/vscode-ttrss/issues",
"email": "aooiu@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/aooiuu/vscode-ttrss"
},
"keywords": [
"rss",
"Tiny Tiny RSS",
"tt-rss",
"ttrss",
"feed",
"news",
"摸鱼"
],
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"scripts": {
"build": "vsce package",
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"contributes": {
"configuration": {
"title": "z-rss",
"properties": {
"z-rss.url": {
"type": "string",
"default": "",
"description": ""
},
"z-rss.user": {
"type": "string",
"default": "",
"description": ""
},
"z-rss.password": {
"type": "string",
"default": "",
"description": ""
},
"z-rss.refreshInterval": {
"type": "integer",
"default": 3600,
"description": "refresh interval(s)"
},
"z-rss.hideImage": {
"type": "boolean",
"default": false,
"description": "hide image"
},
"z-rss.searchPrefix": {
"type": "string",
"default": "title:",
"markdownDescription": "[https://tt-rss.org/wiki/SearchSyntax](https://tt-rss.org/wiki/SearchSyntax)"
},
"z-rss.getHeadlinesViewMode": {
"type": "string",
"enum": [
"all_articles",
"unread",
"adaptive",
"marked",
"updated"
],
"default": "all_articles",
"description": "view_mode (string = all_articles, unread, adaptive, marked, updated)"
},
"z-rss.injectedHtml": {
"type": "string",
"default": "",
"description": "injected html: <style>...</style><script>...</script>"
},
"z-rss.readerViewTitle": {
"type": "string",
"default": "${name}",
"markdownDescription": "panel title"
}
}
},
"commands": [
{
"command": "z-rss.signin",
"title": "signin",
"icon": "$(sign-in)"
},
{
"command": "z-rss.signout",
"title": "signout",
"icon": "$(sign-out)"
},
{
"command": "z-rss.getFeedList",
"title": "refresh",
"icon": "$(refresh)"
},
{
"command": "z-rss.getArticleList",
"title": "refresh",
"icon": "$(refresh)"
},
{
"command": "z-rss.lastPage",
"title": "last page",
"icon": "$(arrow-left)"
},
{
"command": "z-rss.nextPage",
"title": "next page",
"icon": "$(arrow-right)"
},
{
"command": "z-rss.markAsRead",
"title": "mark as read",
"icon": "$(check-all)"
},
{
"command": "z-rss.markAsReadAndNextPage",
"title": "mark as read and next page",
"icon": "$(repo-sync)"
},
{
"command": "z-rss.star",
"title": "star",
"icon": "$(star)"
},
{
"command": "z-rss.unstar",
"title": "unstar",
"icon": "$(star-full)"
},
{
"command": "z-rss.viewInBrowser",
"title": "view in browser",
"icon": "$(globe)"
},
{
"command": "z-rss.subscribeToFeed",
"title": "subscribe to feed"
},
{
"command": "z-rss.unsubscribeFeed",
"title": "unsubscribe feed"
},
{
"command": "z-rss.searchArticles",
"title": "search articles",
"icon": "$(search)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "z-rss",
"title": "Z RSS",
"icon": "resources/rss.svg"
}
]
},
"views": {
"z-rss": [
{
"id": "z-rss-feeds",
"name": "Feeds"
},
{
"id": "z-rss-articles",
"name": "Articles"
}
]
},
"menus": {
"view/title": [
{
"command": "z-rss.getFeedList",
"when": "view == z-rss-feeds",
"group": "navigation@1"
},
{
"command": "z-rss.searchArticles",
"when": "view == z-rss-feeds",
"group": "navigation@2"
},
{
"command": "z-rss.signin",
"when": "view == z-rss-feeds",
"group": "navigation@3"
},
{
"command": "z-rss.lastPage",
"when": "view == z-rss-articles",
"group": "navigation@1"
},
{
"command": "z-rss.nextPage",
"when": "view == z-rss-articles",
"group": "navigation@2"
},
{
"command": "z-rss.markAsRead",
"when": "view == z-rss-articles",
"group": "navigation@3"
},
{
"command": "z-rss.getArticleList",
"when": "view == z-rss-articles",
"group": "navigation@4"
},
{
"command": "z-rss.markAsReadAndNextPage",
"when": "view == z-rss-articles",
"group": "navigation@5"
}
],
"view/item/context": [
{
"command": "z-rss.getArticleList",
"when": "view == z-rss-feeds",
"group": "inline"
},
{
"command": "z-rss.star",
"when": "view == z-rss-articles && viewItem == star",
"group": "inline"
},
{
"command": "z-rss.unstar",
"when": "view == z-rss-articles && viewItem == unstar",
"group": "inline"
},
{
"command": "z-rss.viewInBrowser",
"when": "view == z-rss-articles",
"group": "inline"
},
{
"command": "z-rss.markAsRead",
"when": "view == z-rss-feeds",
"group": "inline"
}
]
}
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.68.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"got": "^12.1.0"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/aooiu/vscode-ttrss.git
git@gitee.com:aooiu/vscode-ttrss.git
aooiu
vscode-ttrss
vscode-ttrss
main

搜索帮助