-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.74 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
{
"name": "adk-extension",
"displayName": "Agent Development Kit Extension",
"description": "Extension for the Agent Development Kit. Contains useful commands and tools for agent development.",
"version": "1.2.2",
"publisher": "PolyAI",
"license": "Apache-2.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/polyai/adk-extension.git"
},
"bin": {
"adk-lint": "./dist/adk-lint.js"
},
"engines": {
"vscode": "^1.105.1",
"node": ">=16.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "adk-extension.viewFlow",
"title": "ADK: View Flow",
"icon": "$(graph)"
},
{
"command": "adk-extension.createFlow",
"title": "ADK: Create New Flow",
"icon": "$(new-folder)"
},
{
"command": "adk-extension.toggleDebugMode",
"title": "ADK: Toggle Debug Mode",
"icon": "$(debug)"
}
],
"menus": {
"explorer/context": [
{
"command": "adk-extension.viewFlow",
"when": "explorerResourceIsFolder",
"group": "navigation",
"icon": "$(graph)"
},
{
"command": "adk-extension.createFlow",
"when": "explorerResourceIsFolder",
"group": "navigation",
"icon": "$(new-folder)"
}
],
"commandPalette": [
{
"command": "adk-extension.viewFlow",
"title": "ADK: View Flow",
"category": "Agent Development Kit Extension"
},
{
"command": "adk-extension.createFlow",
"title": "ADK: Create New Flow",
"category": "Agent Development Kit Extension"
},
{
"command": "adk-extension.toggleDebugMode",
"title": "ADK: Toggle Debug Mode",
"category": "Agent Development Kit Extension"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run copy-libs && yarn run package",
"copy-libs": "mkdir -p src/lib && cp node_modules/@joint/core/dist/joint.min.js src/lib/ && cp node_modules/@dagrejs/dagre/dist/dagre.min.js src/lib/ && cp node_modules/@dagrejs/graphlib/dist/graphlib.min.js src/lib/ && cp node_modules/@joint/layout-directed-graph/dist/DirectedGraph.min.js src/lib/ && cp node_modules/@msagl/core/dist.min.js src/lib/msagl-core.min.js && cp node_modules/@joint/layout-msagl/dist/umd/index.min.js src/lib/msagl-layout.min.js",
"compile": "yarn run copy-libs && webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src",
"test": "vscode-test",
"semantic-release": "semantic-release"
},
"dependencies": {
"@joint/core": "^4.2.4",
"@joint/layout-directed-graph": "^4.2.3",
"@joint/layout-msagl": "^4.2.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.105.1",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.39.1",
"semantic-release": "^24.0.0",
"semantic-release-vsce": "^6.1.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1"
}
}