mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
97 lines
2.3 KiB
JSON
97 lines
2.3 KiB
JSON
{
|
|
"name": "tauri-vscode",
|
|
"publisher": "tauri-apps",
|
|
"displayName": "Tauri",
|
|
"description": "Enhances the experience of Tauri apps development",
|
|
"icon": "assets/icon.png",
|
|
"bugs": {
|
|
"url": "https://github.com/tauri-apps/tauri-vscode/issues",
|
|
"email": "smcbreen@microsoft.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tauri-apps/tauri-vscode.git"
|
|
},
|
|
"version": "0.1.2",
|
|
"engines": {
|
|
"vscode": "^1.55.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"workspaceContains:**/tauri.conf.json",
|
|
"onCommand:tauri.init",
|
|
"onCommand:tauri.deps-install",
|
|
"onCommand:tauri.deps-update",
|
|
"onCommand:tauri.dev",
|
|
"onCommand:tauri.build",
|
|
"onCommand:tauri.build-debug"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "tauri.conf.json",
|
|
"url": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/tooling/cli.rs/schema.json"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "tauri.init",
|
|
"title": "Init",
|
|
"category": "Tauri"
|
|
},
|
|
{
|
|
"command": "tauri.deps-install",
|
|
"title": "Install Missing Dependencies",
|
|
"category": "Tauri"
|
|
},
|
|
{
|
|
"command": "tauri.deps-update",
|
|
"title": "Update Dependencies",
|
|
"category": "Tauri"
|
|
},
|
|
{
|
|
"command": "tauri.dev",
|
|
"title": "Dev",
|
|
"category": "Tauri"
|
|
},
|
|
{
|
|
"command": "tauri.build",
|
|
"title": "Build",
|
|
"category": "Tauri"
|
|
},
|
|
{
|
|
"command": "tauri.build-debug",
|
|
"title": "Build with debug",
|
|
"category": "Tauri"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "yarn run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint src --ext ts",
|
|
"watch": "tsc -watch -p ./",
|
|
"pretest": "yarn run compile && yarn run lint",
|
|
"test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "7.1.3",
|
|
"@types/mocha": "8.2.2",
|
|
"@types/node": "13.13.51",
|
|
"@types/vscode": "1.55.0",
|
|
"@typescript-eslint/eslint-plugin": "4.22.1",
|
|
"@typescript-eslint/parser": "4.22.1",
|
|
"eslint": "7.25.0",
|
|
"mocha": "8.3.2",
|
|
"typescript": "4.2.4",
|
|
"vscode-test": "1.5.2"
|
|
},
|
|
"dependencies": {
|
|
"glob": "7.1.6",
|
|
"run-in-terminal": "^0.0.3"
|
|
}
|
|
}
|