-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.43 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
{
"name": "rust-test-highlight",
"displayName": "Rust Test Highlight",
"version": "0.1.5",
"private": false,
"description": "Highlight your inline Rust tests with a customizable background color so they stand out in your editor.",
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewbrey/rust-test-highlight.git"
},
"license": "MIT",
"publisher": "andrewbrey",
"type": "commonjs",
"main": "./dist/extension.js",
"scripts": {
"build": "vite build",
"dev": "vite build --mode=development",
"lint": "eslint src --ext ts",
"vscode:prepublish": "npm run build"
},
"contributes": {
"colors": [
{
"id": "rustTestHighlight.backgroundColor",
"description": "Background decoration color for tests",
"defaults": {
"dark": "#1c269255",
"light": "#27b49655",
"highContrast": "#cfcfcf55"
}
}
]
},
"activationEvents": [
"onLanguage:rust"
],
"dependencies": {
"astexplorer-syn": "2.0.15",
"dlv": "1.1.3"
},
"devDependencies": {
"@types/dlv": "1.1.4",
"@types/node": "20.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/vsce": "2.23.0",
"eslint": "^8.56.0",
"type-fest": "4.10.2",
"typescript": "^5.3.3",
"vite": "5.1.3"
},
"engines": {
"vscode": "^1.86.0"
},
"icon": "./docs/logo_large.png",
"extensionKind": [
"ui",
"workspace"
],
"pricing": "Free"
}