-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
101 lines (101 loc) · 2.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "tauri-vscode",
"publisher": "tauri-apps",
"displayName": "Tauri",
"version": "0.2.9",
"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": "[email protected]"
},
"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": "./dist/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": "tsup src/extension.ts --clean --format cjs --external vscode",
"watch": "pnpm run compile --watch",
"format": "prettier ./**/*.{json,ts,js} -w --ignore-path .gitignore"
},
"devDependencies": {
"axios": "1.7.7",
"glob": "11.0.0",
"run-in-terminal": "0.0.3",
"strip-ansi": "7.1.0",
"@types/node": "18.19.48",
"@types/vscode": "1.75.0",
"prettier": "3.3.3",
"tsup": "^8.2.4",
"typescript": "5.6.2"
},
"packageManager": "[email protected]"
}