-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.62 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "teamdocs",
"displayName": "TeamDocs",
"description": "TeamDocs ensures that your centralized documentation is conveniently accessible from the Activity Bar, regardless of the specific project you are currently working on.",
"version": "0.3.0",
"publisher": "lucasprag",
"homepage": "https://github.com/lucasprag/teamdocs/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/lucasprag/teamdocs"
},
"bugs": {
"url": "https://github.com/lucasprag/teamdocs/issues",
"email": "projects@lucasprag.com"
},
"icon": "media/logo.png",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "teamDocs.openSettings",
"title": "Team Docs: Open Settings",
"icon": "$(settings-gear)"
},
{
"command": "teamDocs.search",
"title": "Team Docs: Search",
"icon": "$(search)"
}
],
"menus": {
"view/title": [
{
"command": "teamDocs.search",
"when": "view == teamdocs",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "teamdocs-explorer",
"title": "Team Docs",
"icon": "media/teamdocs-dark.svg"
}
]
},
"views": {
"teamdocs-explorer": [
{
"id": "teamdocs",
"name": "",
"icon": "media/teamdocs-dark.svg",
"contextualTitle": "Team Docs Explorer"
}
]
},
"viewsWelcome": [
{
"view": "teamdocs",
"contents": "Choose your documentation directory.\n[Add path to docs](command:teamDocs.openSettings)"
}
],
"configuration": [
{
"title": "Team Docs",
"properties": {
"teamdocs.path_to_docs_folder": {
"type": "string",
"markdownDescription": "Set the path to your documentation folder. Ex: ``~/Docs/engineering``",
"default": ""
}
}
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"typescript": "^5.2.2"
},
"dependencies": {
"minimatch": "^9.0.4"
}
}