Files
vscode-extension-samples/shell-integration-sample/package.json

42 lines
892 B
JSON
Raw Normal View History

2024-04-10 12:44:05 -07:00
{
"name": "shell-integration-sample",
"displayName": "shell-integration-sample",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.88.0"
},
"enabledApiProposals": [
"terminalShellIntegration"
],
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"terminal": {
"profiles": [
{
"id": "shell-integration-sample.track-editor-directory",
"title": "Track Editor Directory"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
2024-04-11 11:44:26 -07:00
"lint": "eslint src --ext ts"
2024-04-10 12:44:05 -07:00
},
"devDependencies": {
"@types/vscode": "^1.88.0",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^7.4.0",
2024-06-27 14:16:27 -07:00
"@typescript-eslint/parser": "^7.14.0",
2024-04-10 12:44:05 -07:00
"eslint": "^8.57.0",
2024-06-27 14:16:27 -07:00
"typescript": "^5.5.2"
2024-04-10 12:44:05 -07:00
}
}