-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "aws-viz-vscode-ext",
"displayName": "AWS-Viz",
"description": "Generate Typescript and SAM template code for an AWS cloud-native serverless applications from diagrams",
"version": "0.0.11",
"publisher": "MuazOthman",
"engines": {
"vscode": "^1.63.0"
},
"icon": "images/logo.png",
"repository": {
"url": "https://github.com/MuazOthman/aws-viz-vscode-ext"
},
"categories": [
"Visualization"
],
"activationEvents": [
"onCommand:aws-viz.generate"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "aws-viz.generate",
"title": "AWS-Viz: Generate/Update Code",
"enablement": "resourcePath =~ /\\.drawio$/",
"icon": {
"light": "./images/generate-light.svg",
"dark": "./images/generate-dark.svg"
}
}
],
"menus": {
"explorer/context": [
{
"when": "resourcePath =~ /\\.drawio$/",
"command": "aws-viz.generate",
"group": "AWS-Viz"
}
],
"editor/title": [
{
"when": "resourcePath =~ /\\.drawio$/",
"command": "aws-viz.generate",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^1.6.2",
"eslint": "^8.29.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@muazothman/aws-viz": "^0.0.15"
}
}