-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.9 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.9 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": "vortex-extension-helper",
"displayName": "Vortex Extension Helper",
"description": "Helps create and validate Vortex game support extensions",
"version": "0.1.1",
"publisher": "der-floh",
"license": "MIT",
"icon": "./assets/vortex-icon-x512.png",
"repository": {
"type": "git",
"url": "https://github.com/Der-Floh/Vortex-Extension-Helper"
},
"bugs": {
"url": "https://github.com/Der-Floh/Vortex-Extension-Helper/issues"
},
"homepage": "https://github.com/Der-Floh/Vortex-Extension-Helper",
"keywords": [
"vortex",
"vortex-api",
"nexusmods",
"nexus-mods",
"modding",
"game-mods",
"mod-manager",
"game-extension",
"vortex-extension",
"javascript",
"typescript",
"intellisense",
"scaffolding"
],
"engines": {
"vscode": "^1.108.0"
},
"categories": [
"Programming Languages",
"Linters",
"Snippets"
],
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"onStartupFinished",
"onFileSystem:info.json",
"onLanguage:javascript",
"onLanguage:typescript"
],
"main": "./out/extension.js",
"types": "./src/types/vortex-api.d.ts",
"contributes": {
"configuration": {
"title": "Vortex Extension Helper",
"properties": {
"vortexHelper.useNexusApi": {
"type": "boolean",
"default": true,
"description": "Whether to use the Nexus Mods Api for fetching game data when creating new game support extensions."
}
}
},
"commands": [
{
"command": "vortexHelper.newGameSupportExtension",
"title": "Vortex: New Game Support Extension"
},
{
"command": "vortexHelper.setupVortexApi",
"title": "Vortex: Setup Vortex API in Workspace"
},
{
"command": "vortexHelper.scaffoldGameExtension",
"title": "Vortex: Scaffold Game Extension in Workspace"
},
{
"command": "vortexHelper.runWorkspaceChecks",
"title": "Vortex: Run Workspace Checks"
},
{
"command": "vortexHelper.openDocumentation",
"title": "Vortex: Open Extension Documentation"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"package": "npx -y @vscode/vsce package"
},
"devDependencies": {
"@nexusmods/nexus-api": "github:Nexus-Mods/node-nexus-api",
"@types/bluebird": "^3.5.42",
"@types/degit": "^2.8.6",
"@types/mocha": "^10.0.10",
"@types/node": "25.x",
"@types/vscode": "^1.108.1",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"dependencies": {
"sanitize-filename": "^1.6.3"
}
}