-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.89 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.89 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
112
113
114
115
116
117
118
119
120
121
{
"name": "psx-dev",
"displayName": "PSX.Dev",
"description": "PlayStation 1 development made easy",
"version": "0.3.10",
"engines": {
"vscode": "^1.75.0"
},
"extensionKind": [
"workspace",
"ui"
],
"publisher": "grumpycoders",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grumpycoders/pcsx-redux.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"walkthroughs": [
{
"id": "psxDev",
"title": "PSX.Dev",
"description": "PSX.Dev walkthrough",
"steps": [
{
"id": "showpanel",
"title": "Show PSX.Dev panel",
"description": "Thank you for installing the PSX.Dev VSCode extension. In order to use the extension, please \n[show PSX.Dev panel](command:psxDev.showPanel).",
"completionEvents": [
"onCommand:psxDev.showPanel"
]
}
]
}
],
"commands": [
{
"command": "psxDev.showPanel",
"title": "Show panel",
"category": "PSX.Dev"
},
{
"command": "psxDev.buildDebug",
"title": "Build Debug",
"category": "PSX.Dev"
},
{
"command": "psxDev.buildRelease",
"title": "Build Release",
"category": "PSX.Dev"
},
{
"command": "psxDev.clean",
"title": "Clean",
"category": "PSX.Dev"
},
{
"command": "psxDev.launchRedux",
"title": "Launch PCSX-Redux",
"category": "PSX.Dev"
},
{
"command": "psxDev.restorePsyq",
"title": "Restore Psy-Q",
"category": "PSX.Dev"
},
{
"command": "psxDev.restorePythonEnv",
"title": "Restore Python environment",
"category": "PSX.Dev"
},
{
"command": "psxDev.showReduxSettings",
"title": "Show PCSX-Redux Settings",
"category": "PSX.Dev"
},
{
"command": "psxDev.updateModules",
"title": "Update Modules",
"category": "PSX.Dev"
}
]
},
"prettier": "prettier-config-standard",
"scripts": {
"vscode:prepublish": "npm run lint",
"lint": "eslint .",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@vscode/test-electron": "^2.2.2",
"@vscode/vsce": "^2.17.0",
"eslint": "^8.33.0",
"glob": "^8.1.0",
"mocha": "^10.1.0",
"prettier-config-standard": "^5.0.0",
"standard": "*"
},
"dependencies": {
"@octokit/rest": "^19.0.7",
"@vscode/webview-ui-toolkit": "^1.2.1",
"axios": "^1.3.3",
"dmg": "^0.1.0",
"fs-extra": "^11.1.0",
"JSONStream": "^1.3.5",
"mustache": "^4.2.0",
"open-file-explorer": "^1.0.2",
"simple-git": "^3.16.1",
"unzipper": "^0.10.11",
"which": "^5.0.0"
}
}