-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
{
"name": "ps1-dev-extension",
"displayName": "PlayStation 1 Development",
"description": "PlayStation 1 development environment for VSCode/Windsurf",
"version": "0.2.0",
"publisher": "PSDevTools",
"repository": {
"type": "git",
"url": "https://github.com/psdevtools/ps1-dev-extension"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other",
"Programming Languages",
"Snippets"
],
"keywords": [
"playstation",
"ps1",
"psn00b",
"sdk",
"game development"
],
"icon": "images/icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "ps1-dev-extension.setupEnvironment",
"title": "PS1: Setup Development Environment"
},
{
"command": "ps1-dev-extension.createHelloWorld",
"title": "PS1: Create Hello World Project"
},
{
"command": "ps1-dev-extension.buildProject",
"title": "PS1: Build Project"
},
{
"command": "ps1-dev-extension.runEmulator",
"title": "PS1: Run in Emulator"
},
{
"command": "ps1-dev-extension.generateISO",
"title": "PS1: Generate ISO"
},
{
"command": "ps1-dev-extension.installCompiler",
"title": "PS1: Install Compiler"
},
{
"command": "ps1-dev-extension.installSDK",
"title": "PS1: Install SDK"
},
{
"command": "ps1-dev-extension.installEmulator",
"title": "PS1: Install Emulator"
},
{
"command": "ps1-dev-extension.installDebugger",
"title": "PS1: Install Debugger"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "echo 'No compilation needed'",
"lint": "echo 'No linting configured'",
"test": "echo 'No tests configured'"
},
"dependencies": {
"adm-zip": "^0.5.10",
"axios": "^1.6.7",
"extract-zip": "^2.0.1",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.60.0"
}
}