-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 3.9 KB
/
Copy pathpackage.json
File metadata and controls
143 lines (143 loc) · 3.9 KB
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
{
"name": "alcops",
"displayName": "ALCops",
"description": "Code Analyzers for AL programming language of Microsoft Dynamics 365 Business Central",
"version": "1.0.0",
"icon": "icon.png",
"publisher": "arthurvdv",
"author": {
"name": "ALCops",
"url": "https://alcops.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ALCops/vscode-extension"
},
"homepage": "https://github.com/ALCops/vscode-extension#readme",
"bugs": {
"url": "https://github.com/ALCops/vscode-extension/issues"
},
"keywords": [
"AL",
"ALCops",
"analyzer",
"business-central",
"dynamics-365",
"al-language",
"code-quality"
],
"engines": {
"vscode": "^1.134.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "alcops.checkUpdates",
"title": "ALCops: Check for Updates"
},
{
"command": "alcops.install",
"title": "ALCops: Install"
},
{
"command": "alcops.selectCodeAnalyzers",
"title": "ALCops: Select Code Analyzers"
},
{
"command": "alcops.copyVersionInfo",
"title": "ALCops: Copy Version Information"
}
],
"jsonValidation": [
{
"fileMatch": [
"alcops.json",
"ALCops.json"
],
"url": "https://raw.githubusercontent.com/ALCops/Analyzers/main/src/ALCops.Common/Settings/alcops.schema.json"
}
],
"configuration": {
"title": "ALCops",
"properties": {
"alcops.automaticUpdates": {
"type": "boolean",
"default": true,
"description": "Automatically check for updates when VS Code starts. Updates follow the selected Version Channel."
},
"alcops.updateNotification": {
"type": "string",
"enum": [
"auto-install",
"notify-only",
"manual"
],
"enumDescriptions": [
"Automatically download and install updates",
"Show notification when updates are available (recommended)",
"Only update when manually triggered via command"
],
"default": "notify-only",
"description": "How to handle available updates"
},
"alcops.versionChannel": {
"type": "string",
"enum": [
"stable",
"beta",
"alpha"
],
"enumDescriptions": [
"Stable - Latest recommended version for production",
"Beta - Pre-release versions for testing new features",
"Alpha - Experimental versions with latest features"
],
"default": "stable",
"description": "Select which release versions to receive"
},
"alcops.checkUpdateInterval": {
"type": "number",
"default": 24,
"minimum": 1,
"maximum": 720,
"description": "Hours between automatic update checks"
}
}
}
},
"scripts": {
"vscode:prepublish": "node esbuild.mjs --production",
"bundle": "node esbuild.mjs",
"watch:bundle": "node esbuild.mjs --watch",
"compile": "tsc -p ./",
"typecheck": "tsc --noEmit",
"watch": "tsc -watch -p ./",
"clean": "node -e \"['out','dist'].forEach(d => require('fs').rmSync(d, {recursive:true,force:true}))\"",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"unit-test": "vitest run"
},
"devDependencies": {
"@types/node": "26.x",
"@types/semver": "^7.8.0",
"@types/vscode": "^1.134.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.2",
"eslint": "^10.9.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0",
"vitest": "^4.1.11"
},
"dependencies": {
"fflate": "^0.8.3",
"semver": "^7.8.5"
}
}