-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
115 lines (115 loc) · 4.16 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
{
"name": "vscode-trace-server",
"displayName": "VSCode Trace Server",
"description": "Companion extension to the Trace Viewer for VSCode, that makes it easier to start/stop a local trace server",
"version": "0.2.4",
"license": "MIT",
"engines": {
"vscode": "^1.78.0"
},
"publisher": "eclipse-cdt",
"icon": "assets/extension-icon.png",
"categories": [
"Visualization",
"Data Science",
"Other"
],
"keywords": [
"Trace Compass",
"trace",
"visualization",
"companion",
"Eclipse Foundation"
],
"repository": {
"type": "git",
"url": "https://github.com/eclipse-cdt-cloud/vscode-trace-server.git"
},
"bugs": {
"url": "https://github.com/eclipse-cdt-cloud/vscode-trace-server/issues"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"extensionKind": [
"workspace"
],
"contributes": {
"commands": [
{
"command": "vscode-trace-server.stop-or-reset",
"title": "Trace Server: stop or reset"
},
{
"command": "vscode-trace-server.start-if-stopped",
"title": "Trace Server: start (if stopped)"
}
],
"configuration": {
"title": "Trace Server",
"properties": {
"trace-server.traceserver.path": {
"type": "string",
"default": "/usr/bin/tracecompass-server",
"description": "Enter the trace server's binary path, executable included. Eg: /usr/bin/tracecompass-server."
},
"trace-server.traceserver.arguments": {
"type": "string",
"description": "Enter the trace server's command arguments; requires restart. Eg: -data /server/workspace -vmargs -Dtraceserver.port=8081."
}
}
}
},
"scripts": {
"prepare": "yarn run compile",
"vsce:package": "vsce package --yarn",
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"format:write": "prettier --write ./src",
"format:check": "prettier --check ./src",
"test": "node ./out/test/runTest.js",
"version:major": "lerna version major --exact --no-push --git-tag-command /usr/bin/true --yes -m \"Release %s (Major)\"",
"version:minor": "lerna version minor --exact --no-push --git-tag-command /usr/bin/true --yes -m \"Release %s (Minor)\"",
"version:patch": "lerna version patch --exact --no-push --git-tag-command /usr/bin/true --yes -m \"Release %s (Patch)\"",
"license:check": "npx dash-licenses-wrapper --configFile=./configs/license-check-config.json",
"license:check:review": "npx dash-licenses-wrapper --configFile=./configs/license-check-config.json --review"
},
"dependencies": {
"tree-kill": "^1.2.2",
"tsp-typescript-client": "^0.4.2"
},
"devDependencies": {
"@eclipse-dash/nodejs-wrapper": "^0.0.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "2.25.0",
"eslint": "8.43.0",
"glob": "^8.1.0",
"lerna": "^7.0.0",
"mocha": "^10.2.0",
"ovsx": "0.9.2",
"prettier": "2.8.8",
"ts-loader": "^9.4.2",
"typescript": "^4.5.5",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"resolutions": {
"@vscode/vsce": "2.25.0"
},
"extensionDependencies": [
"eclipse-cdt.vscode-trace-extension"
]
}