-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.05 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
{
"name": "echo-terminal",
"displayName": "%extension.displayName%",
"description": "%extension.description%",
"version": "0.0.5",
"publisher": "AccurateAlx",
"repository": {
"type": "git",
"url": "https://github.com/accuratealx/EchoTerminal"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onStartupFinished"
],
"l10n": "./l10n",
"main": "./out/main.js",
"contributes": {
"commands": [],
"configuration": {
"title": "%config.title%",
"properties": {
"EchoTerminal.Enabled": {
"type": "boolean",
"default": true,
"description": "%config.enabled%"
},
"EchoTerminal.FindTerminalMask": {
"type": "string",
"default": "",
"description": "%config.findTerminalMask%"
},
"EchoTerminal.LogType": {
"type": "string",
"default": "keyvalue",
"enum": [
"string",
"slog",
"keyvalue"
],
"enumDescriptions": [
"%config.LogType.string%",
"%config.LogType.slog%",
"%config.LogType.keyvalue%"
],
"description": "%config.LogType%"
},
"EchoTerminal.SingleTerminal": {
"type": "boolean",
"default": true,
"description": "%config.singleTerminal%"
},
"EchoTerminal.InitialDelay": {
"type": "integer",
"default": 1000,
"description": "%config.InitialDelay%"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:ci": "jest --ci --coverage --maxWorkers=2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.5",
"@types/vscode": "^1.85.0",
"@vscode/l10n-dev": "^0.0.35",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
}
}