mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
85 lines
2.0 KiB
JSON
85 lines
2.0 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.0.3",
|
|
"engines": {
|
|
"vscode": "^1.46.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"workspaceContains:**/tauri.conf.json",
|
|
"onCommand:tauri.init",
|
|
"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/cli/tauri.js/src/types/config.schema.json"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "tauri.init",
|
|
"title": "Init",
|
|
"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.0.0",
|
|
"@types/node": "13.13.14",
|
|
"@types/vscode": "1.47.0",
|
|
"@typescript-eslint/eslint-plugin": "3.6.1",
|
|
"@typescript-eslint/parser": "3.6.1",
|
|
"eslint": "7.4.0",
|
|
"mocha": "8.0.1",
|
|
"typescript": "3.9.6",
|
|
"vscode-test": "1.4.0"
|
|
},
|
|
"dependencies": {
|
|
"glob": "7.1.6",
|
|
"run-in-terminal": "^0.0.3"
|
|
}
|
|
}
|