cmake-intellisence/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2022-08-19 16:13:03 +08:00
{
"name": "cmake-ls",
"displayName": "CMake IntelliSence",
"description": "CMake IntelliSence for Visual Studio Code",
"version": "0.0.1",
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:cmake-ls.helloWorld"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cmake-ls.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.70.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"@vscode/test-electron": "^2.1.5"
}
}