-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (110 loc) · 2.86 KB
/
package.json
File metadata and controls
111 lines (110 loc) · 2.86 KB
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
{
"name": "osc-versionmanager",
"displayName": "Finvi Version Manager",
"description": "Version Manager",
"icon": "thisisfine128.png",
"version": "0.3.0",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"extensionDependencies": [
"intersystems-community.servermanager"
],
"repository": {
"type": "git",
"url": "git:https://github.com/LogMull/vscode-versionmanager.git"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "osc-versionmanager.addtotask",
"title": "Version Manager: Add to Task"
},
{
"command": "osc-versionmanager.addalltotask",
"title": "Version Manager: Add all open files to Task"
},
{
"command": "osc-versionmanager.removefromtask",
"title": "Version Manager: Remove from task"
}
],
"configuration": {
"title": "Version Manager",
"properties": {
"versionmanager.request.user": {
"order": 1,
"type": "string",
"default": null,
"description": "Artiva user id for VM instance"
},
"versionmanager.request.includeNew": {
"order": 2,
"type": "boolean",
"default": false,
"description": "Include tasks in the NEW status"
},
"versionmanager.request.includeHold": {
"order": 3,
"type": "boolean",
"default": false,
"description": "Include tasks in the HLD status"
},
"versionmanager.serverName": {
"order": 4,
"type": "string",
"default": null,
"description": "Server from the Intersystems Server Manager. Provides the URL + login credentials."
},
"versionmanager.verifyDevNamespace": {
"order": 6,
"type": "boolean",
"default": true,
"description": "Local Namespace must match a task's Dev Namespace."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"uploadNewVersion": "node ./scripts/uploadNewVersion.ts"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.18.63",
"@types/node-fetch": "^2.5.12",
"@types/vscode": "^1.59.0",
"acorn": "^8.5.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"glob": "^7.1.7",
"mocha": "^10.2.0",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"axios": "^1.6.5",
"node-fetch": "^2.6.5",
"prompt-sync": "^4.2.0",
"xml-js": "^1.6.11"
}
}