-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
179 lines (179 loc) · 4.84 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "pixi-vscode",
"displayName": "Pixi VSCode",
"description": "Pixi support for Visual Studio Code to manage Pixi projects",
"icon": "assets/images/VSCode-Pixi-Logo.png",
"publisher": "jjjermiah",
"version": "1.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jjjermiah/pixi-vscode"
},
"engines": {
"vscode": "^1.89.0"
},
"keywords": [
"pixi",
"pixi.sh",
"vscode",
"python",
"package manager",
"conda"
],
"categories": [
"Other"
],
"preview": true,
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "pixi-vscode.init",
"title": "Pixi: Init"
},
{
"command": "pixi-vscode.addPackages",
"title": "Pixi: Add Packages"
},
{
"command": "pixi-vscode.addChannels",
"title": "Pixi: Add Channels"
},
{
"command": "pixi-vscode.addPyPiPackages",
"title": "Pixi: Add PyPi Packages"
},
{
"command": "pixi-vscode.clearCache",
"title": "Pixi: Clear Extension Cache"
},
{
"command": "pixi-vscode.setPythonInterpreter",
"title": "Pixi: Set Python Interpreter"
},
{
"command": "pixi-vscode.activateEnvironmentTerminal",
"title": "Pixi: Activate Environment in new Terminal"
}
],
"menus": {
"explorer/context": [
{
"command": "pixi-vscode.init",
"group": "1_pixi",
"when": "explorerResourceIsFolder"
},
{
"command": "pixi-vscode.addPackages",
"group": "1_pixi",
"when": "explorerResourceIsFolder"
},
{
"command": "pixi-vscode.addPyPiPackages",
"group": "1_pixi",
"when": "explorerResourceIsFolder"
},
{
"command": "pixi-vscode.addChannels",
"group": "1_pixi",
"when": "explorerResourceIsFolder"
}
]
},
"configuration": {
"title": "Pixi",
"properties": {
"pixi-vscode.defaultProjectType": {
"type": "string",
"default": "pixi",
"enum": [
"pixi",
"pyproject"
],
"description": "The default type of project to create"
},
"pixi-vscode.prefixAPIKey": {
"type": "string",
"default": "",
"description": "The prefix API key"
},
"pixi-vscode.defaultChannels": {
"description": "The default channels to use when creating a new project",
"type": "array",
"scope": "resource",
"items": {
"type": "string"
},
"default": [
"conda-forge"
]
},
"pixi-vscode.defaultPlatforms": {
"description": "The default platforms to use when creating a new project",
"type": "array",
"scope": "resource",
"items": {
"type": "string"
},
"default": [
"osx-64",
"osx-arm64"
]
}
}
},
"viewsWelcome": [
{
"view": "workbench.explorer.emptyView",
"contents": "You can initialize a new Pixi Project with\n[New Pixi Project](command:pixi-vscode.init)\nChoose the folder to create a new Pixi Project in."
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test --coverage true --coverage-output cov ./src/test"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "^8.57.0",
"glob": "^10.3.14",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"semantic-release": "^23.1.1",
"semantic-release-vsce": "^5.7.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"vsce": "^2.15.0",
"vscode-test": "^1.6.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@apollo/client": "^3.10.3",
"@types/react": "^18.3.1",
"@vscode/python-extension": "^1.0.5",
"axios": "^1.7.2",
"fuse.js": "^7.0.0",
"graphql": "^16.8.1",
"react": "^18.3.1",
"vscode-cache": "^0.3.0"
}
}