-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.44 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
{
"name": "verse-extension-fixer",
"displayName": "Verse Extension Fixer (Mac)",
"description": "Fix various stuff related to Verse programming language on Mac.",
"version": "0.1.2",
"publisher": "iflone",
"author": {
"name": "iFlone Studios"
},
"private": false,
"engines": {
"vscode": "^1.94.0"
},
"repository": {
"url": "https://github.com/Florian-Martinez/versemac"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"verse",
"fixer",
"uefn",
"epic games"
],
"extensionKind": [
"workspace"
],
"pricing": "Free",
"qna": "marketplace",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"icon": "assets/icon.png",
"activationEvents": [
"onLanguage:json",
"onStartupFinished"
],
"extensionDependencies": [
"epicgames.verse"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Verse Extension Fixer (Mac): Settings",
"properties": {
"verseExtensionFixer.bottleName": {
"type": "string",
"default": "",
"description": "Insert your UEFN CrossOver Bottle name here. It will help the extension to scan and find automatically correct paths. Respect uppercase, lowercase, space etc. Eg: You have a bottle named \"My Super Bottle\", you'll put it here as \"My Super Bottle\" and not as \"my_super_bottle\"."
},
"verseExtensionFixer.removeVerseDefaultTheme": {
"type": "boolean",
"default": false,
"description": "Allow you to remove the annoying verse dark theme and apply your own."
},
"verseExtensionFixer.fixVerseButtonInUEFN": {
"type": "boolean",
"default": false,
"description": "[NEED VISUAL STUDIO INSTALLED TO WORK, PLEASE CHECK INSTRUCTIONS IN THE Q/A TAB SECTION ON THE MARKETPLACE BEFOREHAND.] Allow you to fix the UEFN button within the UEFN app. This create an apple script that always run in the background and startup. The \"hack\" is basically instead of running the vscode.exe when pressing the verse button, its creating a temporary file, the apple script detect it then does the trick."
},
"verseExtensionFixer.revertWorkspacesWindowsPaths": {
"type": "boolean",
"default": false,
"description": "Create an app allowing you to revert back the Windows paths from the workspace files after a reboot to avoid restarting UEFN again. This app is not run in the background and must be run manually. You can find it within your Applications folder and pin it to your dock so you can easily access it."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vscode": "^1.1.34"
}
}