-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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": "stealth-typer",
"displayName": "Stealth Typer",
"description": "Make text invisible and hide everything in editor so that you can type comfortably in public places without worrying about someone peeking at your screen.",
"version": "0.0.8",
"publisher": "Med0paW",
"icon": "images/logo.png",
"license": "MIT",
"author": "Med0paW <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/medopaw/stealth-typer-vscode"
},
"bugs": {
"url": "https://github.com/medopaw/stealth-typer-vscode/issues"
},
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "stealth-typer.toggleStealthTyping",
"title": "Toggle Stealth Typing"
}
],
"configuration": {
"title": "Stealth Typer",
"properties": {
"stealth-typer.autoStealthIdleSeconds": {
"type": "number",
"default": 0,
"description": "Enable stealth typing after the editor has been idle for the specified number of seconds. A value of 0 or negative disables this feature."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
}
}