-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: replace
tab
to space2
in package.json
- Loading branch information
1 parent
80f41f6
commit 3d5ffbb
Showing
1 changed file
with
144 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,146 +1,146 @@ | ||
{ | ||
"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.0.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": ">=20", | ||
"npm": ">=10", | ||
"vscode": "^1.70.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"keywords": [ | ||
"copy", | ||
"file", | ||
"path" | ||
], | ||
"icon": "images/icon.png", | ||
"activationEvents": [ | ||
"*" | ||
], | ||
"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": "eslint . ./src/**/*.ts", | ||
"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": { | ||
"@types/glob": "7.2.0", | ||
"@types/mocha": "10.0.1", | ||
"@types/node": "18.16.3", | ||
"@types/vscode": "1.70.0", | ||
"@typescript-eslint/eslint-plugin": "5.59.1", | ||
"@vscode/test-electron": "^2.3.0", | ||
"@vscode/vsce": "2.19.0", | ||
"eslint": "8.29.0", | ||
"eslint-plugin-mocha": "10.1.0", | ||
"glob": "8.0.3", | ||
"mocha": "10.2.0", | ||
"typescript": "5.0.4" | ||
}, | ||
"__metadata": { | ||
"id": "ceb1d4ae-8b8e-4f60-bb3a-3a3710b3dc0f", | ||
"publisherDisplayName": "yoshinorin", | ||
"publisherId": "3d54fa26-24ac-4aa9-ba58-7ba481e515fc", | ||
"isPreReleaseVersion": false | ||
} | ||
"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.0.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": ">=20", | ||
"npm": ">=10", | ||
"vscode": "^1.70.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"keywords": [ | ||
"copy", | ||
"file", | ||
"path" | ||
], | ||
"icon": "images/icon.png", | ||
"activationEvents": [ | ||
"*" | ||
], | ||
"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": "eslint . ./src/**/*.ts", | ||
"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": { | ||
"@types/glob": "7.2.0", | ||
"@types/mocha": "10.0.1", | ||
"@types/node": "18.16.3", | ||
"@types/vscode": "1.70.0", | ||
"@typescript-eslint/eslint-plugin": "5.59.1", | ||
"@vscode/test-electron": "^2.3.0", | ||
"@vscode/vsce": "2.19.0", | ||
"eslint": "8.29.0", | ||
"eslint-plugin-mocha": "10.1.0", | ||
"glob": "8.0.3", | ||
"mocha": "10.2.0", | ||
"typescript": "5.0.4" | ||
}, | ||
"__metadata": { | ||
"id": "ceb1d4ae-8b8e-4f60-bb3a-3a3710b3dc0f", | ||
"publisherDisplayName": "yoshinorin", | ||
"publisherId": "3d54fa26-24ac-4aa9-ba58-7ba481e515fc", | ||
"isPreReleaseVersion": false | ||
} | ||
} |