-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.59 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
{
"name": "traceos",
"displayName": "TraceOS",
"description": "An engineering memory layer that captures exact workspace evidence for coding agents.",
"version": "0.1.0",
"publisher": "gowthamchoudhary",
"repository": {
"type": "git",
"url": "https://github.com/gowthamchoudhary/TrackOS.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "traceos",
"title": "TraceOS",
"icon": "resources/traceos.svg"
}
]
},
"views": {
"traceos": [
{
"id": "traceos.sidebar",
"name": "TraceOS Memory",
"type": "webview"
}
]
},
"commands": [
{
"command": "traceos.snapshotState",
"title": "Debug: Snapshot State",
"category": "TraceOS"
},
{
"command": "traceos.testBackendConnection",
"title": "Debug: Test Backend Connection",
"category": "TraceOS"
},
{
"command": "traceos.ingestSnapshotToBackend",
"title": "Debug: Ingest Snapshot To Backend",
"category": "TraceOS"
}
],
"configuration": {
"title": "TraceOS",
"properties": {
"traceos.backendUrl": {
"type": "string",
"default": "https://trackos-h16r.onrender.com",
"description": "Managed TraceOS backend URL"
},
"traceos.userId": {
"type": "string",
"default": "local_user",
"description": "User ID used for managed TraceOS memory isolation"
},
"traceos.teamId": {
"type": "string",
"default": "",
"description": "Team ID for shared TraceOS memory. When set, all team members with the same Team ID and project share memories."
},
"traceos.customAgentCommand": {
"type": "string",
"default": "",
"description": "CLI command spawned and observed by TraceOS when Custom command is selected"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run clean && tsc -p ./",
"clean": "node -e \"require('node:fs').rmSync('out', { recursive: true, force: true })\"",
"watch": "tsc -watch -p ./",
"backend": "npm run compile && node out/backend/server.js"
},
"dependencies": {
"@hydradb/sdk": "^2.0.0",
"@types/node": "^20.17.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.7.2"
}
}