-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "hacknet-vscode",
"version": "2.0.0",
"description": "Hacknet Extension development, made easy in Visual Studio Code.",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmartieCodes/hacknet-vscode.git"
},
"categories": [
"Snippets"
],
"author": "SmartieCodes",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/SmartieCodes/hacknet-vscode/issues"
},
"engines": {
"vscode": "^1.31.1"
},
"publisher": "Smartie",
"displayName": "Hacknet For Visual Studio Code",
"icon": "Logo.png",
"homepage": "https://github.com/SmartieCodes/hacknet-vscode#readme",
"contributes": {
"snippets": [
{
"language": "xml",
"path": "./src/Actions.code-snippets"
},
{
"language": "xml",
"path": "./src/Factions.code-snippets"
},
{
"language": "plaintext",
"path": "./src/HackerScripts.code-snippets"
},
{
"language": "xml",
"path": "./src/Missions.code-snippets"
},
{
"language": "xml",
"path": "./src/Nodes.code-snippets"
},
{
"language": "xml",
"path": "./src/People.code-snippets"
}
]
}
}