-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "better-systemverilog-syntax",
"displayName": "Better SystemVerilog Syntax",
"version": "1.0.2",
"description": "Better syntax highlighting for SystemVerilog",
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/hankhsu1996/vscode-better-systemverilog-syntax"
},
"license": "MIT",
"author": {
"name": "Shou-Li Hsu",
"email": "[email protected]"
},
"publisher": "hankhsu1996",
"scripts": {
"build": "ts-node src/index.ts",
"package": "npm run build && vsce package",
"publish": "npm run package && vsce publish",
"test": "npm run build && vscode-tmgrammar-test -g syntaxes/systemverilog.tmLanguage.json \"tests/**/*.sv\"",
"test-watch": "nodemon --watch src --watch syntaxes --watch tests -e ts,yaml,sv --exec \"npm run test\""
},
"contributes": {
"grammars": [
{
"language": "systemverilog",
"scopeName": "source-text.sv",
"path": "./syntaxes/systemverilog.tmLanguage.json"
}
],
"languages": [
{
"id": "systemverilog",
"aliases": [
"SystemVerilog",
"systemverilog",
"sv"
],
"extensions": [
".sv",
".svh",
".v",
".vh"
],
"configuration": "./language-configuration.json"
}
]
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vscode-tmgrammar-test": "0.1.3"
},
"engines": {
"vscode": "^1.75.1"
},
"icon": "assets/icon.png"
}