-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.85 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
{
"name": "gdv-hammer",
"displayName": "GDV Hammer",
"description": "The support of the GDV documents.",
"version": "1.1.0",
"publisher": "kyrylomyr",
"author": {
"name": "Kyrylo Myroshnychenko",
"url": "https://github.com/kyrylomyr"
},
"homepage": "https://github.com/kyrylomyr/gdv-hammer",
"repository": {
"type": "git",
"url": "https://github.com/kyrylomyr/gdv-hammer.git"
},
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Programming Languages",
"Themes",
"Other"
],
"keywords": [
"gdv"
],
"preview": false,
"icon": "hammer.png",
"main": "./src/extension.js",
"activationEvents": [
"onCommand:extension.markField",
"onCommand:extension.clearMark",
"onCommand:extension.detectField",
"onCommand:extension.anonymize",
"onCommand:extension.resetCache"
],
"contributes": {
"languages": [
{
"id": "gdv",
"aliases": [
"GDV",
"gdv"
],
"extensions": [
".gdv"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gdv",
"scopeName": "text.gdv",
"path": "./syntaxes/gdv.tmLanguage.json"
}
],
"commands": [
{
"command": "extension.markField",
"title": "GDV: Mark field"
},
{
"command": "extension.clearMark",
"title": "GDV: Clear marks"
},
{
"command": "extension.detectField",
"title": "GDV: Detect field under cursor"
},
{
"command": "extension.anonymize",
"title": "GDV: Anonymize document"
},
{
"command": "extension.resetCache",
"title": "GDV: Reset cache"
}
]
},
"dependencies": {
"axios": "^0.26.1",
"jsdom": "^19.0.0",
"randomstring": "^1.2.2"
}
}