-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.7 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.7 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
97
{
"name": "env-shield",
"displayName": "Env Shield",
"description": "Blur secret values in .env files and other configurable files - 100% local processing, no server communication, open source",
"version": "1.2.0",
"publisher": "csuriel",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"icon": "src/images/icon.png",
"contributes": {
"commands": [
{
"command": "env-shield.toggleBlur",
"title": "Toggle Sensitive Values Blur"
}
],
"configuration": {
"title": "Env Shield Configuration",
"properties": {
"env-shield.blurStrength": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 20,
"description": "The strength of the blur effect applied to sensitive values (1-20)",
"scope": "window"
},
"env-shield.additionalFiles": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional JSON files to apply blur effect (provide file paths)",
"scope": "resource"
},
"env-shield.sensitiveFiles": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Files to check for sensitive key patterns (provide file paths)",
"scope": "resource"
},
"env-shield.customPatterns": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Custom regular expressions to identify sensitive values",
"scope": "resource"
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/csuriel/env-shield.git"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && mkdir -p out/images && cp -r src/images/* out/images/",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"reinstall": "./scripts/reinstall-env-shield.sh"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.1",
"globals": "^16.0.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.28.0",
"vsce": "^2.15.0"
},
"overrides": {
"xml2js": "^0.5.0"
}
}