|
1 | 1 | { |
2 | | - "name": "current-file-path", |
3 | | - "displayName": "Current File Path", |
4 | | - "description": "Display current file's path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.", |
5 | | - "version": "4.0.0", |
6 | | - "publisher": "yoshinorin", |
7 | | - "repository": { |
8 | | - "type": "git", |
9 | | - "url": "https://github.com/yoshinorin/vscode-current-file-path-extension" |
10 | | - }, |
11 | | - "bugs": { |
12 | | - "url": "https://github.com/yoshinorin/vscode-current-file-path-extension/issues" |
13 | | - }, |
14 | | - "license": "MIT", |
15 | | - "engines": { |
16 | | - "node": ">=20", |
17 | | - "npm": ">=10", |
18 | | - "vscode": "^1.70.0" |
19 | | - }, |
20 | | - "categories": [ |
21 | | - "Other" |
22 | | - ], |
23 | | - "keywords": [ |
24 | | - "copy", |
25 | | - "file", |
26 | | - "path" |
27 | | - ], |
28 | | - "icon": "images/icon.png", |
29 | | - "activationEvents": [ |
30 | | - "*" |
31 | | - ], |
32 | | - "main": "./out/extension", |
33 | | - "contributes": { |
34 | | - "configuration": { |
35 | | - "type": "object", |
36 | | - "title": "Current File Path extention configurations", |
37 | | - "properties": { |
38 | | - "currentFilePath.defaultPathStyle": { |
39 | | - "type": "string", |
40 | | - "default": "unix", |
41 | | - "enum": [ |
42 | | - "unix", |
43 | | - "windows" |
44 | | - ], |
45 | | - "description": "Specify default path style. Unix like or Windows like.", |
46 | | - "scope": "window" |
47 | | - }, |
48 | | - "currentFilePath.priorityInStatusBar": { |
49 | | - "type": "number", |
50 | | - "default": 0, |
51 | | - "description": "The priority in the statusBar. Higher values shown more to the left.", |
52 | | - "scope": "window" |
53 | | - }, |
54 | | - "currentFilePath.defaultPathStartsFrom": { |
55 | | - "type": "string", |
56 | | - "default": "rootDirectory", |
57 | | - "enum": [ |
58 | | - "rootDirectory", |
59 | | - "workSpace" |
60 | | - ], |
61 | | - "description": "Default value of where the path is displayed starts from. Root directory or workspace highest directory.", |
62 | | - "scope": "window" |
63 | | - } |
64 | | - } |
65 | | - }, |
66 | | - "commands": [ |
67 | | - { |
68 | | - "command": "currentFilePath.executeQuickPickerAction", |
69 | | - "title": "Current File Path: Open Menus", |
70 | | - "group": "current-file-path" |
71 | | - }, |
72 | | - { |
73 | | - "command": "currentFilePath.viewUnixStyle", |
74 | | - "title": "Current File Path: UNIX style", |
75 | | - "group": "current-file-path" |
76 | | - }, |
77 | | - { |
78 | | - "command": "currentFilePath.viewWindowsStyle", |
79 | | - "title": "Current File Path: Windows style", |
80 | | - "group": "current-file-path" |
81 | | - }, |
82 | | - { |
83 | | - "command": "currentFilePath.viewFromSystemRoot", |
84 | | - "title": "Current File Path: Absolute path", |
85 | | - "group": "current-file-path" |
86 | | - }, |
87 | | - { |
88 | | - "command": "currentFilePath.viewFromWorkSpaceRoot", |
89 | | - "title": "Current File Path: From workspace root path", |
90 | | - "group": "current-file-path" |
91 | | - }, |
92 | | - { |
93 | | - "command": "currentFilePath.copy", |
94 | | - "title": "Current File Path: Copy (Path)", |
95 | | - "group": "current-file-path" |
96 | | - }, |
97 | | - { |
98 | | - "command": "currentFilePath.copyFileName", |
99 | | - "title": "Current File Path: Copy (FileName)", |
100 | | - "group": "current-file-path" |
101 | | - }, |
102 | | - { |
103 | | - "command": "currentFilePath.copyFileNameWithOutExtension", |
104 | | - "title": "Current File Path: Copy (FileName without extension)", |
105 | | - "group": "current-file-path" |
106 | | - }, |
107 | | - { |
108 | | - "command": "currentFilePath.openSettings", |
109 | | - "title": "Current File Path: Open Extension Settings", |
110 | | - "group": "current-file-path" |
111 | | - } |
112 | | - ] |
113 | | - }, |
114 | | - "scripts": { |
115 | | - "vscode:prepublish": "npm install && npm run lint && npm run compile", |
116 | | - "compile": "tsc -p ./", |
117 | | - "watch": "tsc -watch -p ./", |
118 | | - "pretest": "npm run compile", |
119 | | - "lint": "eslint . ./src/**/*.ts", |
120 | | - "test:minSupportVersion": " node ./out/test/runMinSupportVersionTest.js", |
121 | | - "test:latest": " node ./out/test/runLatestTest.js", |
122 | | - "test": "npm run test:minSupportVersion && npm run test:latest", |
123 | | - "prepackage": "npm install && npm run lint && npm run compile", |
124 | | - "package": "vsce package" |
125 | | - }, |
126 | | - "devDependencies": { |
127 | | - "@types/glob": "7.2.0", |
128 | | - "@types/mocha": "10.0.1", |
129 | | - "@types/node": "18.16.3", |
130 | | - "@types/vscode": "1.70.0", |
131 | | - "@typescript-eslint/eslint-plugin": "5.59.1", |
132 | | - "@vscode/test-electron": "^2.3.0", |
133 | | - "@vscode/vsce": "2.19.0", |
134 | | - "eslint": "8.29.0", |
135 | | - "eslint-plugin-mocha": "10.1.0", |
136 | | - "glob": "8.0.3", |
137 | | - "mocha": "10.2.0", |
138 | | - "typescript": "5.0.4" |
139 | | - }, |
140 | | - "__metadata": { |
141 | | - "id": "ceb1d4ae-8b8e-4f60-bb3a-3a3710b3dc0f", |
142 | | - "publisherDisplayName": "yoshinorin", |
143 | | - "publisherId": "3d54fa26-24ac-4aa9-ba58-7ba481e515fc", |
144 | | - "isPreReleaseVersion": false |
145 | | - } |
| 2 | + "name": "current-file-path", |
| 3 | + "displayName": "Current File Path", |
| 4 | + "description": "Display current file's path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.", |
| 5 | + "version": "4.0.0", |
| 6 | + "publisher": "yoshinorin", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/yoshinorin/vscode-current-file-path-extension" |
| 10 | + }, |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/yoshinorin/vscode-current-file-path-extension/issues" |
| 13 | + }, |
| 14 | + "license": "MIT", |
| 15 | + "engines": { |
| 16 | + "node": ">=20", |
| 17 | + "npm": ">=10", |
| 18 | + "vscode": "^1.70.0" |
| 19 | + }, |
| 20 | + "categories": [ |
| 21 | + "Other" |
| 22 | + ], |
| 23 | + "keywords": [ |
| 24 | + "copy", |
| 25 | + "file", |
| 26 | + "path" |
| 27 | + ], |
| 28 | + "icon": "images/icon.png", |
| 29 | + "activationEvents": [ |
| 30 | + "*" |
| 31 | + ], |
| 32 | + "main": "./out/extension", |
| 33 | + "contributes": { |
| 34 | + "configuration": { |
| 35 | + "type": "object", |
| 36 | + "title": "Current File Path extention configurations", |
| 37 | + "properties": { |
| 38 | + "currentFilePath.defaultPathStyle": { |
| 39 | + "type": "string", |
| 40 | + "default": "unix", |
| 41 | + "enum": [ |
| 42 | + "unix", |
| 43 | + "windows" |
| 44 | + ], |
| 45 | + "description": "Specify default path style. Unix like or Windows like.", |
| 46 | + "scope": "window" |
| 47 | + }, |
| 48 | + "currentFilePath.priorityInStatusBar": { |
| 49 | + "type": "number", |
| 50 | + "default": 0, |
| 51 | + "description": "The priority in the statusBar. Higher values shown more to the left.", |
| 52 | + "scope": "window" |
| 53 | + }, |
| 54 | + "currentFilePath.defaultPathStartsFrom": { |
| 55 | + "type": "string", |
| 56 | + "default": "rootDirectory", |
| 57 | + "enum": [ |
| 58 | + "rootDirectory", |
| 59 | + "workSpace" |
| 60 | + ], |
| 61 | + "description": "Default value of where the path is displayed starts from. Root directory or workspace highest directory.", |
| 62 | + "scope": "window" |
| 63 | + } |
| 64 | + } |
| 65 | + }, |
| 66 | + "commands": [ |
| 67 | + { |
| 68 | + "command": "currentFilePath.executeQuickPickerAction", |
| 69 | + "title": "Current File Path: Open Menus", |
| 70 | + "group": "current-file-path" |
| 71 | + }, |
| 72 | + { |
| 73 | + "command": "currentFilePath.viewUnixStyle", |
| 74 | + "title": "Current File Path: UNIX style", |
| 75 | + "group": "current-file-path" |
| 76 | + }, |
| 77 | + { |
| 78 | + "command": "currentFilePath.viewWindowsStyle", |
| 79 | + "title": "Current File Path: Windows style", |
| 80 | + "group": "current-file-path" |
| 81 | + }, |
| 82 | + { |
| 83 | + "command": "currentFilePath.viewFromSystemRoot", |
| 84 | + "title": "Current File Path: Absolute path", |
| 85 | + "group": "current-file-path" |
| 86 | + }, |
| 87 | + { |
| 88 | + "command": "currentFilePath.viewFromWorkSpaceRoot", |
| 89 | + "title": "Current File Path: From workspace root path", |
| 90 | + "group": "current-file-path" |
| 91 | + }, |
| 92 | + { |
| 93 | + "command": "currentFilePath.copy", |
| 94 | + "title": "Current File Path: Copy (Path)", |
| 95 | + "group": "current-file-path" |
| 96 | + }, |
| 97 | + { |
| 98 | + "command": "currentFilePath.copyFileName", |
| 99 | + "title": "Current File Path: Copy (FileName)", |
| 100 | + "group": "current-file-path" |
| 101 | + }, |
| 102 | + { |
| 103 | + "command": "currentFilePath.copyFileNameWithOutExtension", |
| 104 | + "title": "Current File Path: Copy (FileName without extension)", |
| 105 | + "group": "current-file-path" |
| 106 | + }, |
| 107 | + { |
| 108 | + "command": "currentFilePath.openSettings", |
| 109 | + "title": "Current File Path: Open Extension Settings", |
| 110 | + "group": "current-file-path" |
| 111 | + } |
| 112 | + ] |
| 113 | + }, |
| 114 | + "scripts": { |
| 115 | + "vscode:prepublish": "npm install && npm run lint && npm run compile", |
| 116 | + "compile": "tsc -p ./", |
| 117 | + "watch": "tsc -watch -p ./", |
| 118 | + "pretest": "npm run compile", |
| 119 | + "lint": "eslint . ./src/**/*.ts", |
| 120 | + "test:minSupportVersion": " node ./out/test/runMinSupportVersionTest.js", |
| 121 | + "test:latest": " node ./out/test/runLatestTest.js", |
| 122 | + "test": "npm run test:minSupportVersion && npm run test:latest", |
| 123 | + "prepackage": "npm install && npm run lint && npm run compile", |
| 124 | + "package": "vsce package" |
| 125 | + }, |
| 126 | + "devDependencies": { |
| 127 | + "@types/glob": "7.2.0", |
| 128 | + "@types/mocha": "10.0.1", |
| 129 | + "@types/node": "18.16.3", |
| 130 | + "@types/vscode": "1.70.0", |
| 131 | + "@typescript-eslint/eslint-plugin": "5.59.1", |
| 132 | + "@vscode/test-electron": "^2.3.0", |
| 133 | + "@vscode/vsce": "2.19.0", |
| 134 | + "eslint": "8.29.0", |
| 135 | + "eslint-plugin-mocha": "10.1.0", |
| 136 | + "glob": "8.0.3", |
| 137 | + "mocha": "10.2.0", |
| 138 | + "typescript": "5.0.4" |
| 139 | + }, |
| 140 | + "__metadata": { |
| 141 | + "id": "ceb1d4ae-8b8e-4f60-bb3a-3a3710b3dc0f", |
| 142 | + "publisherDisplayName": "yoshinorin", |
| 143 | + "publisherId": "3d54fa26-24ac-4aa9-ba58-7ba481e515fc", |
| 144 | + "isPreReleaseVersion": false |
| 145 | + } |
146 | 146 | } |
0 commit comments