-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.21 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
116
117
118
119
120
121
122
123
124
{
"name": "junbae-mode",
"displayName": "Junbae Mode",
"icon": "images/junbae-logo.png",
"version": "1.0.2",
"description": "Junbae is caique parrot!",
"main": "./dist/extension.js",
"publisher": "JunbaeJs",
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:package": "vsce package --out package",
"compile": "tsc -p ./",
"test": "vscode-test",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install"
},
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://github.com/JunbaeJs/junbae-mode.git"
},
"keywords": [
"vscode",
"extension"
],
"author": "Jun-bae The Caique",
"license": "MIT",
"bugs": {
"url": "https://github.com/JunbaeJs/junbae-mode/issues"
},
"homepage": "https://github.com/JunbaeJs/junbae-mode#readme",
"devDependencies": {
"@types/node": "^20.11.5",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"contributes": {
"commands": [
{
"command": "junbae-mode.enable",
"title": "Enable Junbae Mode",
"when": "!config.junbae-mode.enabled",
"enablement": "!config.junbae-mode.enabled"
},
{
"command": "junbae-mode.disable",
"title": "Disable Junbae Mode",
"when": "config.junbae-mode.enabled",
"enablement": "config.junbae-mode.enabled"
},
{
"command": "junbae-mode.helloWorld",
"title": "Hello World"
}
],
"configuration": [
{
"title": "General",
"order": 0,
"properties": {
"junbae-mode.enabled": {
"order": 0,
"default": true,
"type": "boolean",
"description": "Enable Junbae Mode"
}
}
},
{
"title": "Mode",
"order": 1,
"properties": {
"junbae-mode.Mode": {
"order": 0,
"type": "string",
"default": "Walk",
"enum": [
"Walk"
],
"markdownDescription": "You can choose the mode of Junbae."
},
"junbae-mode.location": {
"order": 1,
"type": "string",
"default": "top",
"enum": [
"top",
"bottom"
],
"markdownDescription": "You can choose location of junbae on the screen."
},
"junbae-mode.timerColor": {
"order": 2,
"type": "string",
"default": "white",
"enum": [
"white",
"red"
],
"markdownDescription": "You can choose timer color."
}
}
}
]
}
}