-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (78 loc) · 1.73 KB
/
package.json
File metadata and controls
80 lines (78 loc) · 1.73 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
{
"name": "phorge",
"displayName": "Phorge",
"description": "VSCode support for developing Phorge",
"publisher": "phorge",
"version": "1.0.3",
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"keywords": [
"Phorge",
"Phabricator"
],
"extensionKind": [
"workspace"
],
"license": "MIT",
"activationEvents": [
"workspaceContains:**/__phutil_library_init__.php"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
},
"commands": [
{
"command": "phorge-vscode.liberate",
"title": "Run arc-liberate",
"category": "arc",
"icon": "$(extensions-refresh)"
}
],
"configuration": {
"title": "Phorge",
"properties": {
"phorge-vscode.liberate.command": {
"type": "string",
"default": "liberate",
"description": "Change how \"arc liberate\" is triggered."
}
}
}
},
"homepage": "https://we.phorge.it/tag/phorge-vscode/",
"repository": {
"type": "git",
"url": "https://github.com/phorgeit/phorge-vscode"
},
"bugs": {
"url": "https://we.phorge.it/project/board/143/"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"package":
"vsce package --baseImagesUrl https://raw.githubusercontent.com/phorgeit/phorge-vscode/master --no-gitHubIssueLinking",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./"
},
"extensionDependencies": [
"avive.arcanist"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^5.2.2",
"@types/node": "^24.1.0",
"@types/vscode": "^1.100.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.6.2",
"eslint": "^9.35.0",
"glob": "^11.0",
"typescript": "^5.9.2"
}
}