-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.88 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
{
"name": "vscode-backstage-configuration",
"displayName": "Backstage Configuration",
"description": "IntelliSense support for Backstage app-config.yaml files",
"version": "0.0.2",
"publisher": "dzemanov",
"author": {
"name": "Dominika Zemanovicova",
"url": "https://github.com/dzemanov"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dzemanov/vscode-backstage-configuration.git"
},
"bugs": {
"url": "https://github.com/dzemanov/vscode-backstage-configuration/issues"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"keywords": [
"backstage",
"autocomplete",
"intellisense",
"yaml",
"configuration"
],
"icon": "resources/icons/vscode-backstage-configuration.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"activationEvents": [
"workspaceContains:**/app-config*.yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-backstage-configuration.regenerateSchema",
"title": "Backstage: Regenerate Config Schema"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1"
}
}