forked from omBratteng/vscode-nftables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.03 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
{
"version": "0.4.0",
"name": "nftables",
"displayName": "nftables",
"publisher": "omBratteng",
"private": true,
"description": "Language support package for the nftables configuration syntax",
"repository": {
"type": "git",
"url": "https://github.com/omBratteng/vscode-nftables"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"icon": "icon.png",
"activationEvents": [
"onLanguage:nft",
"onCommand:extension.nft"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "nft",
"aliases": [
"NFTables",
"nft"
],
"extensions": [
"nft"
],
"configuration": "./dist/language-configuration.json"
}
],
"grammars": [
{
"language": "nft",
"scopeName": "source.nft",
"path": "./dist/nft.json"
}
],
"snippets": [
{
"language": "nft",
"path": "./dist/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "yarn build",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts' --cache --report-unused-disable-directives"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^6.4.1",
"@types/vscode": "1.45.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"ovsx": "^0.1.0",
"prettier": "^2.2.1",
"ts-loader": "^9.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vsce": "^1.87.1",
"vscode-test": "^1.5.2",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
},
"__metadata": {
"id": "c5d628a9-92b9-48ed-9b1d-1cb60aea79bd",
"publisherId": "04f38382-fd0a-4fc7-8de4-f57dbc9520be",
"publisherDisplayName": null
}
}