-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.79 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
{
"name": "google-workspace-vscode-extension",
"displayName": "Google Workspace Developer Tools",
"description": "Lint Google Workspace OAuth2 scopes and more.",
"version": "0.4.1",
"publisher": "google-workspace",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Justin Poehnelt",
"email": "jpoehnelt@google.com",
"url": "https://justin.poehnelt.com"
},
"categories": [
"Linters",
"Visualization",
"Other"
],
"keywords": [
"google",
"workspace",
"card",
"json",
"scopes",
"oauth2"
],
"icon": "assets/icon_128.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"repository": "https://github.com/googleworkspace/language-tools",
"bugs": {
"url": "https://github.com/googleworkspace/language-tools/issues"
},
"homepage": "https://github.com/googleworkspace/language-tools",
"engines": {
"vscode": "^1.50.0"
},
"type": "module",
"main": "./out/extension.cjs",
"contributes": {
"commands": []
},
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"build": "tsup",
"check": "tsc --noEmit",
"ci:package": "vsce package",
"ci:publish": "ovsx publish --skip-duplicate && vsce publish --skip-duplicate",
"ci:update": "tsx scripts/fetch-apis.ts",
"dev": "tsup --watch",
"pretest": "pnpm build",
"test": "xvfb-run -a vscode-test",
"vscode:prepublish": "tsup"
},
"devDependencies": {
"@types/mocha": "catalog:",
"@types/node": "catalog:",
"@types/vscode": "^1.50.0",
"@vscode/test-cli": "catalog:",
"@vscode/test-electron": "catalog:",
"@vscode/vsce": "catalog:",
"googleapis": "catalog:",
"ky": "catalog:",
"ovsx": "catalog:",
"tsup": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:"
}
}