-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
175 lines (175 loc) · 4.3 KB
/
package.json
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "effect-vscode",
"displayName": "Effect Dev Tools",
"description": "Tools to assist development with the Effect Typescript framework",
"icon": "resources/icons/effect-dark.png",
"version": "0.1.7",
"private": true,
"packageManager": "[email protected]",
"engines": {
"vscode": "^1.84.0"
},
"repository": {
"type": "git",
"url": "https://github.com/effect-ts/vscode-extension.git"
},
"license": "MIT",
"categories": [
"Debuggers",
"Visualization"
],
"activationEvents": [
"onDebug"
],
"main": "./out/extension.js",
"publisher": "effectful-tech",
"contributes": {
"configuration": {
"title": "Effect Dev Tools",
"properties": {
"effect.devServer.port": {
"type": "integer",
"default": 34437,
"description": "The port to run the Effect dev server on"
},
"effect.metrics.pollInterval": {
"type": "integer",
"default": 500,
"description": "The time in milliseconds between polling for metrics"
}
}
},
"commands": [
{
"command": "effect.startServer",
"title": "Effect Dev Tools: Start Server",
"icon": "$(play)"
},
{
"command": "effect.stopServer",
"title": "Effect Dev Tools: Stop Server",
"icon": "$(debug-stop)"
},
{
"command": "effect.resetMetrics",
"title": "Effect Dev Tools: Reset Metrics",
"icon": "$(refresh)"
},
{
"command": "effect.resetTracer",
"title": "Effect Dev Tools: Reset Tracer",
"icon": "$(refresh)"
},
{
"command": "effect.copyInfoValue",
"title": "Copy value",
"icon": "$(copy)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "effect",
"title": "Effect Dev Tools",
"icon": "resources/icons/effect-light.svg"
}
]
},
"views": {
"effect": [
{
"id": "effect-clients",
"name": "Clients"
},
{
"id": "effect-tracer",
"name": "Tracer"
},
{
"id": "effect-metrics",
"name": "Metrics"
}
],
"debug": [
{
"id": "effect-context",
"name": "Effect Context",
"when": "inDebugMode"
}
]
},
"viewsWelcome": [
{
"view": "effect-clients",
"contents": "The Effect Dev Tools server is currently stopped.\n[Start the server](command:effect.startServer)"
}
],
"menus": {
"view/title": [
{
"command": "effect.startServer",
"when": "view === effect-clients && effect:running === false",
"group": "navigation"
},
{
"command": "effect.stopServer",
"when": "view === effect-clients && effect:running === true",
"group": "navigation"
},
{
"command": "effect.resetMetrics",
"when": "view === effect-metrics",
"group": "navigation"
},
{
"command": "effect.resetTracer",
"when": "view === effect-tracer",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "effect.copyInfoValue",
"when": "viewItem == info"
}
]
}
},
"scripts": {
"vscode:prepublish": "pnpm build",
"build": "tsup",
"dev": "tsup --watch",
"pretest": "pnpm run compile && pnpm run lint",
"test": "node ./out/test/runTest.js",
"ci:publish": "vsce publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@effect/experimental": "^0.32.0",
"@effect/language-service": "^0.2.0",
"@effect/platform-node": "^0.64.18",
"@types/mocha": "^10.0.9",
"@types/node": "~22.9.0",
"@types/vscode": "1.84.0",
"@types/ws": "^8.5.13",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"effect": "3.10.10",
"glob": "^11.0.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"ws": "^8.18.0"
},
"sideEffects": false,
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"@types/vscode"
]
}
}
}