This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json.v.template
161 lines (161 loc) · 5.07 KB
/
package.json.v.template
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
152
153
154
155
156
157
158
159
160
161
{
"name": "quantum-devkit-vscode",
"version": "#VSCODEVSIX_VERSION#",
"displayName": "[Deprecated] Microsoft Quantum Development Kit for Visual Studio Code",
"description": "Microsoft Quantum Development Kit for Visual Studio Code provides support for developing quantum algorithms in the Q# programming language.",
"publisher": "quantum",
"author": "Microsoft DevLabs",
"homepage": "https://docs.microsoft.com/azure/quantum/",
"icon": "MS_Quantum_Spot_Dev-200.png",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/qsharp-compiler.git"
},
"engines": {
"vscode": "^1.52.0"
},
"license": "MIT",
"categories": [
"Programming Languages"
],
"keywords": [
"Q#",
"qsharp",
"quantum"
],
"qna": "https://github.com/microsoft/qsharp-compiler",
"activationEvents": [
"onLanguage:qsharp",
"onCommand:quantum.installTemplates",
"onCommand:quantum.newProject",
"onCommand:quantum.openDocumentation",
"onCommand:quantum.installIQSharp"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "quantum.installTemplates",
"title": "Q#: Install command line project templates"
},
{
"command": "quantum.newProject",
"title": "Q#: Create new project..."
},
{
"command": "quantum.openDocumentation",
"title": "Q#: Go to Quantum Development Kit documentation"
},
{
"command": "quantum.installIQSharp",
"title": "Q#: Install IQ#"
}
],
"languages": [
{
"id": "qsharp",
"aliases": [
"Q#"
],
"extensions": [
"qs"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"type": "object",
"title": "Q# language server configuration",
"properties": {
"quantumDevKit.languageServerPath": {
"scope": "machine",
"type": [
"string",
"null"
],
"description": "Path to the language server assembly for Q#.",
"default": null
}
}
},
"grammars": [
{
"language": "qsharp",
"scopeName": "source.qsharp",
"path": "./syntaxes/qsharp.tmLanguage.json"
}
],
"snippets": [
{
"language": "qsharp",
"path": "./snippets/qsharp.json"
},
{
"language": "csharp",
"path": "./snippets/csharp.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm install && npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@types/fs-extra": "^8.0.0",
"decompress-zip": "^0.2.2",
"fs-extra": "^8.1.0",
"lodash": "^4.17.21",
"request": "^2.88.0",
"semver": "^6.0.0",
"tmp": "0.0.33",
"ts-optchain": "^0.1.7",
"@vscode/extension-telemetry": "0.6.2",
"vscode-languageclient": "7.0.0",
"which": "1.3.1",
"yeoman-environment": "^3.4.1",
"yeoman-generator": "^5.3.0",
"yosay": "^2.0.1"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "9.6.57",
"@types/request": "^2.48.3",
"@types/semver": "^6.0.0",
"@types/tmp": "0.0.33",
"@types/vscode": "^1.52.0",
"@types/which": "1.3.1",
"@types/yeoman-environment": "2.3.3",
"@types/yeoman-generator": "3.1.4",
"@types/yosay": "0.0.29",
"mocha": "^8.2.1",
"tslint": "^5.8.0",
"typescript": "^4.1.3",
"vsce": "^1.81.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^6.1.0"
},
"blobs": {
"win32": {
"url": "https://msquantumpublic.blob.core.windows.net/qsharp-compiler/LanguageServer-win10-x64-#SEMVER_VERSION#.zip",
"sha256": "<DISABLED>"
},
"darwin": {
"url": "https://msquantumpublic.blob.core.windows.net/qsharp-compiler/LanguageServer-osx-x64-#SEMVER_VERSION#.zip",
"sha256": "<DISABLED>"
},
"linux": {
"url": "https://msquantumpublic.blob.core.windows.net/qsharp-compiler/LanguageServer-linux-x64-#SEMVER_VERSION#.zip",
"sha256": "<DISABLED>"
}
},
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"requiredDotNetCoreSDK": "2.1.0",
"enableTelemetry": #ENABLE_TELEMETRY#,
"nugetVersion": "#NUGET_VERSION#",
"assemblyVersion": "#ASSEMBLY_VERSION#",
"files": [
"*",
"../../NOTICE.txt"
]
}