-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.03 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.03 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
{
"name": "faro",
"displayName": "Faro",
"description": "Turn agent reasoning into persistent code beacons inside VS Code.",
"version": "0.0.1",
"private": true,
"publisher": "pmarchini",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pmarchini/faro.git"
},
"type": "module",
"engines": {
"vscode": "^1.109.0"
},
"main": "./src/infra/vscode/extension.ts",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onView:faro.main",
"onCommand:faro.focusSidebar",
"onCommand:faro.nextBeacon",
"onCommand:faro.previousBeacon",
"onCommand:faro.revealCurrentBeacon",
"onCommand:faro.setActivePath",
"onCommand:faro.setCurrentBeacon"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "faro",
"title": "Faro",
"icon": "media/faro.svg"
}
]
},
"views": {
"faro": [
{
"id": "faro.main",
"name": "Home",
"type": "webview"
}
]
},
"mcpServerDefinitionProviders": [
{
"id": "faro.local",
"label": "Faro"
}
],
"configuration": {
"title": "Faro",
"properties": {
"faro.autoFocusOnStartup": {
"type": "boolean",
"default": false,
"description": "Focus the Faro view container automatically when the extension activates."
}
}
},
"commands": [
{
"command": "faro.focusSidebar",
"title": "Faro: Focus Sidebar"
},
{
"command": "faro.nextBeacon",
"title": "Faro: Next Beacon"
},
{
"command": "faro.previousBeacon",
"title": "Faro: Previous Beacon"
},
{
"command": "faro.revealCurrentBeacon",
"title": "Faro: Reveal Current Beacon"
},
{
"command": "faro.setActivePath",
"title": "Faro: Set Active Path"
},
{
"command": "faro.setCurrentBeacon",
"title": "Faro: Set Current Beacon"
}
]
},
"scripts": {
"check": "tsc -p tsconfig.json",
"upsert:agent-instructions": "node --experimental-strip-types scripts/upsert-agent-instructions.ts --scope=all",
"upsert:agent-instructions:local": "node --experimental-strip-types scripts/upsert-agent-instructions.ts --scope=local",
"upsert:agent-instructions:global": "node --experimental-strip-types scripts/upsert-agent-instructions.ts --scope=global",
"upsert:copilot-agent": "node --experimental-strip-types scripts/upsert-agent-instructions.ts --scope=local --copilot-agent-only",
"package:vsix": "vsce package",
"install:local": "npm run package:vsix -- --out dist/faro.vsix && code --install-extension dist/faro.vsix --force",
"test": "node --test --test-isolation=none",
"test:watch": "node --test --test-isolation=none --watch"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/vscode": "^1.109.0",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.9.3"
}
}