mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
Bumps [axios](https://github.com/axios/axios) from 1.6.8 to 1.7.4. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.6.8...v1.7.4) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
103 lines
2.2 KiB
JSON
103 lines
2.2 KiB
JSON
{
|
|
"name": "tauri-vscode",
|
|
"publisher": "tauri-apps",
|
|
"displayName": "Tauri",
|
|
"version": "0.2.6",
|
|
"description": "Enhances the experience of Tauri apps development",
|
|
"license": "MIT OR Apache-2.0",
|
|
"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"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.75.0"
|
|
},
|
|
"categories": [
|
|
"Snippets",
|
|
"Linters",
|
|
"Other"
|
|
],
|
|
"keywords": [
|
|
"tauri",
|
|
"desktop",
|
|
"gui",
|
|
"development",
|
|
"rust",
|
|
"javascript",
|
|
"framework"
|
|
],
|
|
"activationEvents": [
|
|
"workspaceContains:**/tauri.conf.json",
|
|
"workspaceContains:**/tauri.*.conf.json",
|
|
"workspaceContains:**/tauri.conf.json5",
|
|
"workspaceContains:**/tauri.*.conf.json5",
|
|
"onFileSystem:tauri"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": [
|
|
"tauri.conf.json",
|
|
"tauri.conf.json5",
|
|
"tauri.*.conf.json",
|
|
"tauri.*.conf.json5"
|
|
],
|
|
"url": "tauri://schemas/config.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"
|
|
}
|
|
],
|
|
"snippets": [
|
|
{
|
|
"language": "rust",
|
|
"path": "./snippets/rust.json"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "pnpm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"format": "prettier ./**/*.{json,ts,js} -w --ignore-path .gitignore"
|
|
},
|
|
"dependencies": {
|
|
"axios": "1.7.4",
|
|
"glob": "10.3.12",
|
|
"run-in-terminal": "0.0.3",
|
|
"strip-ansi": "6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.19.31",
|
|
"@types/vscode": "1.75.0",
|
|
"prettier": "3.3.2",
|
|
"typescript": "5.5.2"
|
|
},
|
|
"packageManager": "pnpm@9.7.1"
|
|
}
|