-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.7 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
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": "miranum-copilot",
"displayName": "Miranum Copilot",
"description": "A AI-powered copilot for the unique needs and challenges faced in BPM.",
"license": "SEE LICENSE IN LICENSE",
"version": "0.1.0",
"publisher": "miragon-gmbh",
"preview": true,
"homepage": "https://www.miranum.io/",
"galleryBanner": {
"color": "#F0F8FF",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/Miragon/miranum-copilot.git"
},
"bugs": {
"url": "https://github.com/Miragon/miranum-copilot/issues"
},
"engines": {
"vscode": "^1.82.0"
},
"icon": "./images/miranum_icon.png",
"categories": [
"Other"
],
"keywords": [
"AI",
"BPM",
"BPMN",
"ChatGPT",
"Copilot"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/main.js",
"contributes": {
"commands": [
{
"command": "miranum-copilot.createOrShow",
"title": "Open Copilot",
"category": "Miranum Copilot"
},
{
"command": "miranum-copilot.editPrompts",
"title": "Edit Prompts",
"category": "Miranum Copilot"
},
{
"command": "miranum-copilot.createDocumentation",
"title": "Create Process Documentation",
"category": "Miranum Copilot"
},
{
"command": "miranum-copilot.createForm",
"title": "Create Form",
"category": "Miranum Copilot"
}
],
"menus": {
"commandPalette": [
{
"command": "miranum-copilot.createOrShow"
},
{
"command": "miranum-copilot.editPrompts"
},
{
"command": "miranum-copilot.createDocumentation",
"when": "workspaceFolderCount > 0"
},
{
"command": "miranum-copilot.createForm",
"when": "workspaceFolderCount > 0"
}
]
},
"configuration": {
"title": "MiranumCopilot",
"properties": {
"miranumIDE.copilot.openaiApiKey": {
"scope": "application",
"type": "string",
"description": "Enter your OpenAI API Key",
"pattern": "sk-.*"
}
}
}
},
"scripts": {
"pretest": "npm run lint && npm run compile",
"compile": "tsc --skipLibCheck -p ./",
"lint": "eslint src --ext ts",
"unit": "nyc --silent ts-mocha -p ./tsconfig.json ./src/**/*.spec.ts",
"integration": "nyc --silent --clean false node ./dist/test/runTest.js",
"test": "npm run unit && npm run integration && nyc report",
"build": "npm run esbuild -- --minify && npm run vite -- --minify esbuild",
"dev": "conc -c \"cyan,yellow\" \"npm run esbuild -- --sourcemap --watch\" \"npm run vite -- --sourcemap true --watch\"",
"esbuild": "esbuild src/main.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"vite": "vite build --config src/web/vite.config.js",
"vite:browser": "cd ./src/web && vite --open true"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.82.0",
"@types/vscode-webview": "^1.57.4",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-vue": "^5.0.2",
"@vscode/test-electron": "^2.3.8",
"chai": "^4.3.10",
"concurrently": "^8.2.2",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.19.2",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.1",
"ts-mocha": "^10.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-html": "^3.2.1",
"vite-plugin-static-copy": "^0.17.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.35",
"@vscode/webview-ui-toolkit": "^1.4.0",
"lodash": "^4.17.21",
"openai": "^4.24.1",
"reflect-metadata": "^0.2.1",
"tsyringe": "^4.8.0",
"vue": "^3.3.13"
}
}