-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
165 lines (165 loc) · 4.49 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "vscode-scriptiq",
"displayName": "ScriptIQ",
"description": "A VSCode extension for auto-generating Android tests with LLM and Sauce Labs RDC.",
"version": "0.3.6",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/saucelabs/vscode-scriptiq.git"
},
"publisher": "saucelabs",
"icon": "media/icons/Lowcode_icon_storefront.png",
"keywords": [
"llm",
"gpt",
"test",
"automation",
"sauce",
"ai",
"lowcode"
],
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Testing"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "scriptiq-settings",
"title": "Sauce Labs ScriptIQ",
"icon": "./media/icons/Lowcode_icon_white.png"
}
]
},
"viewsWelcome": [
{
"view": "scriptiq-history",
"contents": "Your goal history will appear here once you generate tests.\n[Start a Test](command:scriptiq.showTestGenerationPanel)"
}
],
"commands": [
{
"command": "scriptiq-history.deleteEntry",
"title": "Delete",
"icon": "$(trash)"
},
{
"command": "scriptiq-history.deleteAll",
"title": "Clear History"
},
{
"command": "scriptiq.showTestGenerationPanel",
"title": "New Test",
"icon": "$(add)"
}
],
"views": {
"scriptiq-settings": [
{
"type": "webview",
"id": "scriptiq-connect",
"name": "Connect"
},
{
"id": "scriptiq-history",
"name": "History"
}
]
},
"menus": {
"commandPalette": [],
"editor/context": [],
"view/item/context": [
{
"command": "scriptiq-history.deleteEntry",
"when": "view == scriptiq-history && viewItem == testRecord",
"group": "inline"
}
],
"view/title": [
{
"command": "scriptiq-history.deleteAll",
"when": "view == scriptiq-history"
},
{
"group": "navigation",
"when": "view == scriptiq-history",
"command": "scriptiq.showTestGenerationPanel"
}
]
},
"webviews": [
{
"viewType": "markdown.preview",
"icon": {
"light": "./media/icons/Lowcode_icon_white.png",
"dark": "./media/icons/Lowcode_icon_black.png"
}
}
]
},
"nx": {
"implicitDependencies": [
"connect-webview",
"test-generation-webview"
]
},
"scripts": {
"nx:build": "nx build",
"build": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"build:prod": "npm run build -- --minify",
"build:web": "npm --prefix webview-ui/connect run build -- && npm --prefix webview-ui/test-generation run build --",
"build-tests": "tsc -p . --outDir out",
"build-watch": "npm run build -- --sourcemap --watch",
"fmt": "prettier --write '**/*.{js,ts,mjs,cjs,jsx,tsx}'",
"preinstall": "npm --prefix webview-ui/connect install && npm --prefix webview-ui/test-generation install",
"lint": "prettier --check '**/*.{js,ts,mjs,cjs,jsx,tsx}' && eslint .",
"pretest": "npm run build && npm run build-tests",
"package": "nx build:prod",
"prepare": "husky",
"test": "vscode-test",
"vscode:prepublish": "npm run package",
"release": "release-it",
"release:ci": "npm run release -- --ci",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major"
},
"devDependencies": {
"@eslint/js": "8.57.0",
"@nx/eslint": "19.3.1",
"@nx/web": "19.3.1",
"@types/mocha": "10.0.6",
"@types/node": "20.11.20",
"@types/vscode": "1.86.0",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"@vscode/test-cli": "0.0.6",
"@vscode/test-electron": "2.3.9",
"esbuild": "0.21.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"glob": "10.3.10",
"husky": "9.0.11",
"mocha": "10.3.0",
"nx": "19.3.1",
"prettier": "3.2.5",
"pretty-quick": "4.0.0",
"release-it": "17.3.0",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"typescript-eslint": "7.1.0"
},
"dependencies": {
"@fontsource/dm-mono": "5.0.18",
"@types/sizzle": "2.3.8",
"rxjs": "7.8.1",
"undici": "6.20.1"
}
}