1 Star 0 Fork 0

ZHJEE/OrCAD_Capture_TCL_Extension_for_VScode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 2.96 KB
一键复制 编辑 原始数据 按行查看 历史
dependabot[bot] 提交于 2023-03-15 16:10 +08:00 . Bump webpack from 5.75.0 to 5.76.0
{
"name": "tcl",
"displayName": "Tcl",
"description": "Tcl language support",
"version": "0.4.2",
"keywords": [
"tcl",
"tk"
],
"publisher": "bitwisecook",
"bugs": {
"url": "https://github.com/bitwisecook/tcl.git/LICENSE"
},
"license": "MIT",
"icon": "images/Tcl-powered.png",
"engines": {
"vscode": "^1.75.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bitwisecook/tcl.git"
},
"categories": [
"Formatters",
"Other",
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:tcl"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "tcl",
"aliases": [
"Tcl",
"tcl"
],
"extensions": [
".tcl",
".tm",
".test"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "tcl.escapeToQuotedTcl",
"title": "Escape Selections to Tcl Quoted String",
"category": "Tcl"
}
],
"grammars": [
{
"language": "tcl",
"scopeName": "source.tcl",
"path": "./out/syntaxes/tcl.json"
}
],
"snippets": [
{
"language": "tcl",
"path": "./snippets/tcl.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"webpack": "webpack --mode development && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"webpack-dev": "webpack --mode development --watch && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"test-compile": "tsc -p ./ && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/vscode": "^1.75.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"vsce": "^2.15.0",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/ZHJEE/OrCAD_Capture_TCL.git
git@gitee.com:ZHJEE/OrCAD_Capture_TCL.git
ZHJEE
OrCAD_Capture_TCL
OrCAD_Capture_TCL_Extension_for_VScode
master

搜索帮助