-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
144 lines (144 loc) · 4.37 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "current-file-path",
"displayName": "Current File Path",
"description": "Display current file's path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.",
"version": "4.1.0",
"publisher": "yoshinorin",
"repository": {
"type": "git",
"url": "https://github.com/yoshinorin/vscode-current-file-path-extension"
},
"bugs": {
"url": "https://github.com/yoshinorin/vscode-current-file-path-extension/issues"
},
"license": "MIT",
"engines": {
"node": ">=22",
"npm": ">=10",
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"keywords": [
"copy",
"file",
"path"
],
"icon": "images/icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Current File Path extention configurations",
"properties": {
"currentFilePath.defaultPathStyle": {
"type": "string",
"default": "unix",
"enum": [
"unix",
"windows"
],
"description": "Specify default path style. Unix like or Windows like.",
"scope": "window"
},
"currentFilePath.priorityInStatusBar": {
"type": "number",
"default": 0,
"description": "The priority in the statusBar. Higher values shown more to the left.",
"scope": "window"
},
"currentFilePath.defaultPathStartsFrom": {
"type": "string",
"default": "rootDirectory",
"enum": [
"rootDirectory",
"workSpace"
],
"description": "Default value of where the path is displayed starts from. Root directory or workspace highest directory.",
"scope": "window"
}
}
},
"commands": [
{
"command": "currentFilePath.executeQuickPickerAction",
"title": "Current File Path: Open Menus",
"group": "current-file-path"
},
{
"command": "currentFilePath.viewUnixStyle",
"title": "Current File Path: UNIX style",
"group": "current-file-path"
},
{
"command": "currentFilePath.viewWindowsStyle",
"title": "Current File Path: Windows style",
"group": "current-file-path"
},
{
"command": "currentFilePath.viewFromSystemRoot",
"title": "Current File Path: Absolute path",
"group": "current-file-path"
},
{
"command": "currentFilePath.viewFromWorkSpaceRoot",
"title": "Current File Path: From workspace root path",
"group": "current-file-path"
},
{
"command": "currentFilePath.copy",
"title": "Current File Path: Copy (Path)",
"group": "current-file-path"
},
{
"command": "currentFilePath.copyFileName",
"title": "Current File Path: Copy (FileName)",
"group": "current-file-path"
},
{
"command": "currentFilePath.copyFileNameWithOutExtension",
"title": "Current File Path: Copy (FileName without extension)",
"group": "current-file-path"
},
{
"command": "currentFilePath.openSettings",
"title": "Current File Path: Open Extension Settings",
"group": "current-file-path"
}
]
},
"scripts": {
"vscode:prepublish": "npm install && npm run lint && npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"lint": "biome lint --write ./src",
"fmt": "biome format --write ./src",
"test:minSupportVersion": " node ./out/test/runMinSupportVersionTest.js",
"test:latest": " node ./out/test/runLatestTest.js",
"test": "npm run test:minSupportVersion && npm run test:latest",
"prepackage": "npm install && npm run lint && npm run compile",
"package": "vsce package"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mocha": "10.0.1",
"@types/node": "20.11.28",
"@types/vscode": "1.70.0",
"@vscode/test-electron": "2.3.9",
"@vscode/vsce": "2.24.0",
"glob": "10.3.10",
"mocha": "10.2.0",
"typescript": "5.4.2"
},
"__metadata": {
"id": "ceb1d4ae-8b8e-4f60-bb3a-3a3710b3dc0f",
"publisherDisplayName": "yoshinorin",
"publisherId": "3d54fa26-24ac-4aa9-ba58-7ba481e515fc",
"isPreReleaseVersion": false
}
}