-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
165 lines (165 loc) · 4.9 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
{
"name": "plastic-scm",
"displayName": "Plastic SCM",
"description": "Plastic SCM integration",
"publisher": "plastic-scm",
"license": "MIT",
"version": "0.1.3",
"icon": "images/logo.png",
"homepage": "https://github.com/PlasticSCM/vscode-plasticscm/blob/master/README.md",
"bugs": {
"url": "https://github.com/PlasticSCM/vscode-plasticscm/issues"
},
"engines": {
"vscode": "^1.95.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PlasticSCM/vscode-plasticscm"
},
"categories": [
"Other",
"SCM Providers"
],
"keywords": [
"scm",
"plastic-scm",
"plasticscm"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Plastic SCM",
"properties": {
"plastic-scm.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether Plastic SCM is enabled.",
"scope": "window"
},
"plastic-scm.cmConfiguration.cmPath": {
"type": "string",
"default": "cm",
"markdownDescription": "Specifies a given `cm` executable that is not in your `PATH` environment variable.",
"scope": "window"
},
"plastic-scm.cmConfiguration.millisToWaitUntilUp": {
"type": "number",
"default": 5000,
"markdownDescription": "Milliseconds to wait for the `cm shell` to be up before disabling the extension. In some systems, shell initialization might be slow.",
"scope": "window"
},
"plastic-scm.cmConfiguration.millisToStop": {
"type": "number",
"default": 5000,
"markdownDescription": "Milliseconds to wait for the `cm shell` to exit when it has to stop or restart. This might prevent aborting commands in the middle of their execution.",
"scope": "window"
},
"plastic-scm.consolidateUnrealOneFilePerActorChanges": {
"type": "boolean",
"default": true,
"markdownDescription": "By default, the plugin will consolidate all __ExternalActors__ and __ExternalObjects__ changes (from Unreal Engine's One File Per Actor system) into a single entry in the Dirty Unreal Levels group."
},
"plastic-scm.autorefresh": {
"type": "boolean",
"default": true,
"markdownDescription": "Autorefresh workspace status when something changes."
},
"plastic-scm.decorations.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether or not file decorations are enabled."
}
}
},
"commands": [
{
"command": "plastic-scm.checkin",
"category": "Plastic SCM",
"title": "Checkin",
"icon": "$(check)"
},
{
"command": "plastic-scm.refresh",
"category": "Plastic SCM",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "plastic-scm.openFile",
"category": "Plastic SCM",
"title": "Open File",
"icon": "$(go-to-file)"
}
],
"menus": {
"scm/title": [
{
"command": "plastic-scm.checkin",
"group": "navigation",
"when": "scmProvider == plastic-scm"
},
{
"command": "plastic-scm.refresh",
"group": "navigation",
"when": "scmProvider == plastic-scm"
}
],
"scm/resourceState/context": [
{
"command": "plastic-scm.openFile",
"when": "scmProvider == plastic-scm && scmResourceGroup == status",
"group": "inline@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"deploy": "vsce publish",
"lint": "eslint src --fix"
},
"dependencies": {
"byline": "^5.0.0",
"isbinaryfile": "^5.0.4",
"uuid": "^11.0.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/byline": "^4.2.36",
"@types/chai": "^4.3.3",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.7",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.95.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"chai": "^4.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"typemoq": "^2.1.0",
"typescript": "^5.6.3"
}
}