-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 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
{
"name": "vscode-direnv",
"displayName": "direnv",
"description": "Automatically detect and load .envrc when opening VS Code",
"version": "1.0.1",
"publisher": "cab404",
"license": "MIT",
"icon": "assets/icon.png",
"extensionKind": [
"ui",
"workspace"
],
"maintainers": [
{
"name": "cab404",
"url": "https://github.com/cab404"
}
],
"contributors": [
{
"name": "rubymaniac",
"url": "https://github.com/rubymaniac"
},
{
"name": "timbertson",
"url": "https://github.com/timbertson"
}
],
"engines": {
"vscode": "^1.59.0"
},
"bugs": {
"url": "https://github.com/cab404/vscode-direnv/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cab404/vscode-direnv.git"
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"package": "vsce package",
"install": "yarn run compile; vsce package; cp *.vsix $out",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.20.28",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"typescript": "^4.4.3",
"vsce": "^1.100.1"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onTerminalProfile:direnv"
],
"main": "./out/src/main",
"contributes": {
"terminal": {
"profiles": [
{
"id": "direnv",
"title": "direnv-extended terminal"
}
]
},
"commands": [
{
"command": "direnv.version",
"title": "direnv: view version",
"description": "Shows the version of the direnv installed."
},
{
"command": "direnv.view",
"title": "direnv: view .envrc",
"description": "Opens up the .envrc file."
},
{
"command": "direnv.allow",
"title": "direnv: allow .envrc",
"description": "Allows direnv to load the .envrc."
},
{
"command": "direnv.reload",
"title": "direnv: reload .envrc",
"description": "Triggers an env reload"
}
]
},
"dependencies": {}
}