-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
85 lines (85 loc) · 2.05 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
{
"version": "0.7.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.69.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": "^10.1.0",
"@types/node": "20.x",
"@types/vscode": "1.69.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ovsx": "^0.9.1",
"prettier": "^2.8.8",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"vsce": "^2.15.0",
"vscode-test": "^1.6.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"__metadata": {
"id": "c5d628a9-92b9-48ed-9b1d-1cb60aea79bd",
"publisherId": "04f38382-fd0a-4fc7-8de4-f57dbc9520be",
"publisherDisplayName": null
}
}