mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "tauri-vscode",
|
|
"displayName": "Tauri",
|
|
"description": "Enhances the experience of Tauri apps development",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.46.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"workspaceContains:**/tauri.conf.json",
|
|
"onCommand:tauri.build"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"jsonValidation": [{
|
|
"fileMatch": "tauri.conf.json",
|
|
"url": "https://gist.githubusercontent.com/lucasfernog/e945806ea3c8fb1b9aae728005cf9304/raw/0a0947f4561e6419ea43b2ee74ae897f6e31eced/schema.json"
|
|
}],
|
|
"commands": [{
|
|
"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.1",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^13.11.0",
|
|
"@types/vscode": "^1.46.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.30.0",
|
|
"@typescript-eslint/parser": "^2.30.0",
|
|
"eslint": "^6.8.0",
|
|
"glob": "^7.1.6",
|
|
"mocha": "^7.1.2",
|
|
"typescript": "^3.8.3",
|
|
"vscode-test": "^1.3.0"
|
|
},
|
|
"dependencies": {
|
|
"run-in-terminal": "^0.0.3"
|
|
}
|
|
} |