mirror of
https://github.com/nyanotech/recombobulator
synced 2025-12-16 11:30:21 -08:00
96 lines
2.1 KiB
JSON
96 lines
2.1 KiB
JSON
{
|
|
"name": "recombobulator",
|
|
"displayName": "recombobulator",
|
|
"description": "Misc text utilities",
|
|
"license": "BSD-3-Clause",
|
|
"version": "0.0.1",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nyanotech/recombobulator.git"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.75.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"main": "./dist/extension.js",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "recombobulator.generate-uuid",
|
|
"category": "Recombobulator",
|
|
"title": "generate uuid"
|
|
},
|
|
{
|
|
"command": "recombobulator.base64",
|
|
"category": "Recombobulator",
|
|
"title": "base64 encode"
|
|
},
|
|
{
|
|
"command": "recombobulator.unbase64",
|
|
"category": "Recombobulator",
|
|
"title": "base64 decode"
|
|
},
|
|
{
|
|
"command": "recombobulator.rot13",
|
|
"category": "Recombobulator",
|
|
"title": "rot13"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "recombobulator.generate-uuid",
|
|
"when": "editorFocus"
|
|
},
|
|
{
|
|
"command": "recombobulator.base64",
|
|
"when": "editorHasSelection"
|
|
},
|
|
{
|
|
"command": "recombobulator.unbase64",
|
|
"when": "editorHasSelection"
|
|
},
|
|
{
|
|
"command": "recombobulator.rot13",
|
|
"when": "editorHasSelection"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run package",
|
|
"compile": "webpack",
|
|
"watch": "webpack --watch",
|
|
"package": "webpack --mode production --devtool hidden-source-map",
|
|
"compile-tests": "tsc -p . --outDir out",
|
|
"watch-tests": "tsc -p . -w --outDir out",
|
|
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
|
"lint": "eslint src --ext ts",
|
|
"test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.65.0",
|
|
"@types/glob": "^7.2.0",
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/node": "14.x",
|
|
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
"@typescript-eslint/parser": "^5.12.1",
|
|
"eslint": "^8.9.0",
|
|
"glob": "^7.2.0",
|
|
"mocha": "^9.2.1",
|
|
"typescript": "^4.5.5",
|
|
"ts-loader": "^9.2.6",
|
|
"webpack": "^5.69.1",
|
|
"webpack-cli": "^4.9.2",
|
|
"@vscode/test-electron": "^2.1.2"
|
|
}
|
|
}
|