-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
113 lines (113 loc) · 3.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
{
"name": "anycode",
"displayName": "anycode",
"publisher": "ms-vscode",
"description": "",
"version": "0.0.43",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"enabledApiProposals": [
"languageStatus"
],
"preview": true,
"repository": {
"url": "https://github.com/microsoft/vscode-anycode"
},
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp",
"onLanguage:go",
"onLanguage:java",
"onLanguage:php",
"onLanguage:python",
"onLanguage:rust",
"onLanguage:typescript",
"onCommand:workbench.action.showAllSymbols"
],
"browser": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Anycode",
"properties": {
"anycode.symbolIndexSize": {
"type": "number",
"default": 100,
"minimum": 0,
"markdownDescription": "Size of the index that is used for features like symbol search and go to definition."
},
"anycode.language.features": {
"markdownDescription": "Control the language features that anycode offers. This can be configured for each supported language: [Learn How to Do That](https://code.visualstudio.com/docs/getstarted/settings#_languagespecific-editor-settings)",
"type": "object",
"scope": "language-overridable",
"additionalProperties": false,
"properties": {
"definitions": {
"type": "boolean",
"description": "Go to Definition based on identifiers and local variables"
},
"references": {
"type": "boolean",
"description": "Find References based on identifiers and local variables"
},
"workspaceSymbols": {
"type": "boolean",
"description": "Add symbols to workspace symbol search"
},
"highlights": {
"type": "boolean",
"description": "Highlight Occurrences of identifiers and local variables"
},
"outline": {
"type": "boolean",
"description": "Populate Outline, Quick-outline, and Breadcrumbs"
},
"completions": {
"type": "boolean",
"description": "Completions based on identifiers and symbol names"
},
"diagnostics": {
"type": "boolean",
"description": "(experimental) Parse errors show as problems"
}
},
"default": {
"completions": true,
"definitions": true,
"references": true,
"highlights": true,
"outline": true,
"workspaceSymbols": true,
"diagnostics": false
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b tsconfig.json && node esbuild.js",
"watch": "node esbuild.js --watch",
"lint": "eslint src --ext ts",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"deploy": "npx vsce publish --noVerify",
"pretest-extension": "npx esbuild client/src/test/suite/index.ts --bundle --external:vscode --target=es2020 --format=cjs --outfile=dist/extension.test.js --define:process=\"{\\\"env\\\":{}}\"",
"test-extension": "npx vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/extension.test.js",
"test-server": "cd server && npm run test"
},
"devDependencies": {
"@types/node": "^16.7.3",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vscode/test-web": "^0.0.8",
"esbuild": "^0.12.14",
"eslint": "^7.19.0",
"typescript": "^4.1.3",
"vsce": "^1.95.1"
}
}