1 Star 0 Fork 0

Taiyuuki/vscode-cargo-scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 2.57 KB
一键复制 编辑 原始数据 按行查看 历史
Taiyuuki 提交于 2024-07-01 12:41 . perf: TOML parser with @iarna/toml
{
"name": "vscode-cargo-scripts",
"displayName": "Cargo Scripts",
"publisher": "taiyuuki",
"version": "0.3.1",
"description": "Run scripts from Cargo.toml",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/taiyuuki/vscode-cargo-scripts"
},
"bugs": "https://github.com/taiyuuki/vscode-cargo-scripts/issues",
"homepage": "https://github.com/taiyuuki/vscode-cargo-scripts#readme",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"icon": "res/cargo_scripts.png",
"activationEvents": [
"workspaceContains:**/Cargo.toml",
"onLanguage:rust"
],
"contributes": {
"commands": [
{
"command": "cargoScripts.run",
"title": "Run",
"icon": "$(debug-start)"
},
{
"command": "cargoScripts.open",
"title": "Open"
},
{
"command": "cargoScripts.refresh",
"title": "Refresh",
"icon": "$(search-refresh)"
}
],
"views": {
"explorer": [
{
"id": "cargoScripts",
"name": "Cargo Scripts",
"when": "showCargoScript"
}
]
},
"menus": {
"view/title": [
{
"command": "cargoScripts.refresh",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "cargoScripts.run",
"group": "inline",
"when": "viewItem == script_item",
"icon": "$(run)"
}
]
},
"configuration": [
{
"title": "cargo-scripts",
"properties": {
"cargoScripts.terminal": {
"type": "boolean",
"default": false,
"description": "Create a separate terminal for each script."
}
}
}
]
},
"scripts": {
"lint": "eslint --fix",
"dev": "tsup --watch",
"build": "tsup",
"bump:patch": "bump patch",
"package": "npx vsce package --no-dependencies",
"publish": "npx vsce publish",
"test": "vitest"
},
"keywords": [
"rust",
"cargo",
"scripts"
],
"author": "taiyuuki <taiyuuki@qq.com>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@taiyuuki/eslint-config": "^1.4.14",
"@types/node": "^18.11.18",
"@types/vscode": "^1.74.0",
"@vscode/test-electron": "^2.2.2",
"eslint": "^9.6.0",
"tsup": "^8.1.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"fast-glob": "^3.2.12"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/taiyuuki/vscode-cargo-scripts.git
git@gitee.com:taiyuuki/vscode-cargo-scripts.git
taiyuuki
vscode-cargo-scripts
vscode-cargo-scripts
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385