-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
99 lines (99 loc) · 2.37 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
{
"name": "nix-env-selector",
"displayName": "Nix Environment Selector",
"description": "Allows switch environment for Visual Studio Code and extensions based on Nix config file.",
"version": "1.0.11",
"keywords": [
"nix",
"nix-env",
"nix-shell",
"vscode"
],
"license": "MIT",
"publisher": "arrterian",
"author": {
"name": "Roman Valihura",
"email": "[email protected]"
},
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.38.0"
},
"repository": {
"type": "git",
"url": "https://github.com/arrterian/nix-env-selector.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onLanguage"
],
"main": "./dist/main.js",
"contributes": {
"configuration": {
"title": "Nix Environment Selector",
"properties": {
"nixEnvSelector.nixFile": {
"type": "string",
"default": null,
"description": "Path for nix-shell config"
},
"nixEnvSelector.suggestion": {
"type": "boolean",
"default": true,
"description": "Shows message with proposal to select env (if available)"
},
"nixEnvSelector.args": {
"type": "string",
"default": null,
"description": "Additional args for nix-shell (EX: -A some.thing)"
},
"nixEnvSelector.packages": {
"type": "array",
"default": [],
"description": "Attr for nix-shell config"
},
"nixEnvSelector.nixShellPath": {
"type": "string",
"default": null,
"description": "Custom path to nix-shell executable"
},
"nixEnvSelector.nixShellConfig": {
"type": "string",
"deprecationMessage": "[DEPRECATED] Use 'nixFile' instead",
"description": "Path for nix-shell config"
},
"nixEnvSelector.nixShellConfigAttr": {
"type": "string",
"deprecationMessage": "[DEPRECATED] Use 'args' instead",
"description": "Attribute path (nix-shell -A)"
}
}
},
"commands": [
{
"command": "nixEnvSelector.selectEnv",
"title": "Nix-Env: Select environment"
},
{
"command": "nixEnvSelector.hitEnv",
"title": "Nix-Env: Hit environment"
}
]
},
"scripts": {
"vscode:prepublish": "echo ***DONE***",
"compile": "shadow-cljs release extension",
"watch": "shadow-cljs watch extension"
},
"devDependencies": {
"@types/vscode": "^1.38.0",
"shadow-cljs": "2.11.18",
"vscode-test": "^1.2.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {}
}