-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.21 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
{
"name": "grammyjs",
"displayName": "grammY",
"publisher": "grammyjs",
"description": "Tooling for grammY bot development",
"preview": true,
"icon": "assets/Y-fit.png",
"repository": {
"type": "git",
"url": "https://github.com/grammyjs/vscode"
},
"version": "1.0.0",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"telegram",
"bot",
"grammy"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "grammyjs-tools",
"title": "grammy",
"icon": "assets/Y-fit.png"
}
]
},
"views": {
"grammyjs-tools": [
{
"type": "tree",
"id": "updates-explorer",
"name": "Updates Explorer",
"contextualTitle": "Updates Explorer"
},
{
"type": "webview",
"id": "filter-query",
"name": "Filter Explorer",
"contextualTitle": "Filter Explorer"
}
]
},
"viewsWelcome": [
{
"view": "updates-explorer",
"contents": "Visualize Telegram updates as they happen.\n[Start](command:updates-explorer.start)"
},
{
"view": "filter-explorer",
"contents": "Filter queries documentation"
}
],
"commands": [
{
"command": "updates-explorer.start",
"title": "Start"
},
{
"command": "updates-explorer.stop",
"title": "Stop",
"icon": "assets/stop.svg"
}
],
"menus": {
"view/title": [
{
"command": "updates-explorer.stop",
"when": "view == updates-explorer",
"group": "navigation"
}
]
},
"snippets": [
{
"language": "javascript",
"path": "./src/snippets/javascript.code-snippets"
},
{
"language": "typescript",
"path": "./src/snippets/typescript.code-snippets"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run esbuild-base --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "yarn run esbuild-base --sourcemap",
"esbuild-watch": "yarn run esbuild-base --sourcemap --watch",
"compile-web": "node src/scripts/compile_svelte.mjs",
"generate-filter-queries": "ts-node src/filter_explorer/prepare.ts"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/temp": "^0.9.1",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vscode/test-electron": "^2.1.5",
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"esbuild": "^0.17.16",
"esbuild-svelte": "^0.7.3",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.27.5",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"svelte": "^3.58.0",
"ts-morph": "^18.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"fuse.js": "^6.6.2",
"grammy": "^1.16.0"
}
}