-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 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
{
"name": "swg-stf-editor",
"displayName": "SWG String File Editor",
"description": "View and edit Star Wars Galaxies .stf (String Table File) files in plain text format",
"version": "1.0.1",
"publisher": "WastedPotentialStudiosLLC",
"author": {
"name": "Wasted Potential Studios"
},
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/Jridder1987/swg-stf-editor"
},
"bugs": {
"url": "https://github.com/Jridder1987/swg-stf-editor/issues"
},
"homepage": "https://github.com/Jridder1987/swg-stf-editor#readme",
"keywords": [
"star wars galaxies",
"swg",
"stf",
"string table",
"localization",
"game development",
"Wasted Potential Studios"
],
"icon": "icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Formatters"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:plaintext"
],
"contributes": {
"commands": [
{
"command": "swg-stf-editor.openFile",
"title": "Open SWG String File as Text",
"category": "SWG"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceExtname == .stf",
"command": "swg-stf-editor.openFile",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
},
"dependencies": {}
}