代码拉取完成,页面将自动刷新
{
"name": "novelhideincode",
"displayName": "novelhideincode",
"description": "a extension for read novel in code",
"version": "0.0.1",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.showNovel",
"title": "Show Novel"
},
{
"command": "extension.previousPage",
"title": "Previous Page"
},
{
"command": "extension.nextPage",
"title": "Next Page"
},
{
"command": "extension.setNovelFolderPath",
"title": "Set Novel Folder Path"
},
{
"command": "extension.showCodeLensAtCursor",
"title": "Show CodeLens at Cursor"
},
{
"command": "extension.toggleCodeLens",
"title": "Toggle CodeLens"
}
],
"keybindings": [
{
"command": "extension.nextPage",
"key": "pagedown",
"when": "editorTextFocus"
},
{
"command": "extension.previousPage",
"key": "pageup",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"properties": {
"novelHideInCode.novelFolderPath": {
"type": "string",
"default": "",
"description": "The path to the folder containing novel TXT files."
},
"novelHideInCode.maxLineLength": {
"type": "number",
"default": 50,
"description": "The maximum number of characters per line."
},
"novelHideInCode.numberOfLines": {
"type": "number",
"default": 5,
"description": "The number of lines to display (including the last line from the previous page)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm 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": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "^18.19.41",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。