-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.45 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
{
"name": "srecord",
"displayName": "Motorola S-Record",
"description": "Motorola S-record file format",
"version": "0.0.5",
"publisher": "xiaoyongdong",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/xiaoyongdong/srecord"
},
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:s19",
"onCommand:SRecord.Find",
"onCommand:SRecord.Repair"
],
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "s19",
"aliases": [
"SRecord",
"s19"
],
"extensions": [
".s19",
".s28",
".s37",
".sx",
".srec"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "s19",
"scopeName": "text.s19",
"path": "./syntaxes/s19.tmLanguage.json"
}
],
"commands": [
{
"command": "SRecord.Find",
"title": "Find",
"category": "Motorola S-record"
},
{
"command": "SRecord.Repair",
"title": "Repair",
"category": "Motorola S-record"
}
],
"configuration": {
"type": "object",
"title": "SRecord Configuration",
"properties": {
"srecord.repairOnSave": {
"type": "boolean",
"default": false,
"description": "Try to repair an srec file each times it's saved."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^8",
"@types/node": "^14",
"@types/vscode": "^1",
"mocha": "^8",
"typescript": "^4"
}
}