-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
151 lines (151 loc) · 4.45 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "unity-tools",
"displayName": "Unity Tools",
"description": "Various tools to help with Unity development",
"version": "1.2.12",
"publisher": "Tobiah",
"engines": {
"vscode": "^1.48.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/TobiahZ/unity-tools",
"repository": {
"type": "git",
"url": "https://github.com/TobiahZ/unity-tools.git"
},
"categories": [
"Other",
"Extension Packs"
],
"extensionPack": [
"Unity.unity-debug"
],
"bugs": "https://github.com/TobiahZ/unity-tools/issues",
"keywords": [
"unity",
"unity3d",
"docs",
"documentation",
"asset store",
"multi-root ready"
],
"activationEvents": [
"onCommand:unity-tools.OpenDocs",
"onCommand:unity-tools.SearchDocs",
"onCommand:unity-tools.SearchMSFTDocs",
"onCommand:unity-tools.OpenVSCodeDocs",
"onCommand:unity-tools.CreateDirectories"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "unity-tools.OpenDocs",
"title": "Unity Tools: Open Documentation for Selection"
},
{
"command": "unity-tools.SearchDocs",
"title": "Unity Tools: Search Documentation"
},
{
"command": "unity-tools.SearchMSFTDocs",
"title": "Unity Tools: Search MSFT Documentation"
},
{
"command": "unity-tools.OpenVSCodeDocs",
"title": "Unity Tools: Open VSCode Documentation"
},
{
"command": "unity-tools.CreateDirectories",
"title": "Unity Tools: Generate Organizational Folders"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection && editorLangId == 'csharp' && config.unity-tools.enableRightClickSearch",
"command": "unity-tools.OpenDocs",
"group": "navigation@1"
}
]
},
"keybindings": [
{
"key": "ctrl+'",
"mac": "cmd+'",
"when": "editorTextFocus && editorLangId == 'csharp'",
"command": "unity-tools.OpenDocs"
},
{
"key": "ctrl+shift+'",
"mac": "cmd+shift+'",
"when": "editorTextFocus && editorLangId == 'csharp'",
"command": "unity-tools.SearchDocs"
}
],
"configuration": {
"type": "object",
"title": "Unity-Tools Settings",
"properties": {
"unity-tools.defaultOrganizationFolders": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"Materials",
"Scenes",
"Scripts",
"Prefabs",
"Audio"
],
"description": "Sets which folders will be generated from the unity-tools.GenerateOrganizationFolders command"
},
"unity-tools.documentationVersion": {
"type": "string",
"default": "",
"description": "Which Unity version should be used for online documentation? Example: \"2020.1\" or \"2018.4\""
},
"unity-tools.enableRightClickSearch": {
"type": "boolean",
"default": true,
"description": "Enables the \"Open Documentation\" option on right-click menu."
},
"unity-tools.localDocumentationPath": {
"type": "string",
"default": "",
"description": "The path to local documentation, as opposed to going online. Example: \"Applications/Unity/Documentation/en/ScriptReference\" - NOTE: Do NOT include a trailing slash, file target or file:///"
},
"unity-tools.localDocumentationViewer": {
"type": "string",
"default": "firefox",
"description": "The path command for the browser you'd like to use to open local file documentation. Example: \"firefox\", \"iexplore\", \"chrome\". Must be defined if using unity-tools.localDocumentationPath"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.29",
"@types/vscode": "^1.48.0",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"vsce": "^2.15.0",
"vscode-test": "^1.4.0"
},
"icon": "unity-logo.png",
"dependencies": {
"open": "^6.4.0"
}
}