|
1 | 1 | { |
2 | | - "name": "rtdbin", |
3 | | - "displayName": "Read The Bin", |
4 | | - "publisher": "readthedocs", |
5 | | - "description": "An extension to easily create bins.", |
6 | | - "version": "0.2.2", |
7 | | - "icon": "media/icon.png", |
8 | | - "main": "build/extension.js", |
9 | | - "prettier": "@typescord/prettier-config", |
10 | | - "scripts": { |
11 | | - "vscode:prepublish": "yarn build", |
12 | | - "deploy-ovsx": "ovsx publish", |
13 | | - "package": "vsce package --yarn -o bin.vsix", |
14 | | - "build": "tsc", |
15 | | - "watch": "tsc -w", |
16 | | - "lint": "eslint src --ext ts", |
17 | | - "lint-fix": "yarn lint --fix", |
18 | | - "format": "prettier . --write" |
19 | | - }, |
20 | | - "author": "Read The Docs FR", |
21 | | - "engines": { |
22 | | - "vscode": "^1.52.0" |
23 | | - }, |
24 | | - "license": "MIT", |
25 | | - "homepage": "https://github.com/readthedocs-fr/bin-client-vscode#readme", |
26 | | - "repository": { |
27 | | - "type": "git", |
28 | | - "url": "git+https://github.com/readthedocs-fr/bin-client-vscode.git" |
29 | | - }, |
30 | | - "bugs": { |
31 | | - "url": "https://github.com/readthedocs-fr/bin-client-discord/issues" |
32 | | - }, |
33 | | - "activationEvents": [ |
34 | | - "onCommand:rtdbin.createBin" |
35 | | - ], |
36 | | - "contributes": { |
37 | | - "commands": [ |
38 | | - { |
39 | | - "command": "rtdbin.createBin", |
40 | | - "title": "Create a bin", |
41 | | - "category": "Bin", |
42 | | - "enablement": "activeEditor || activePanel == 'workbench.panel.output' || explorerViewletVisible && !explorerResourceIsFolder" |
43 | | - } |
44 | | - ], |
45 | | - "keybindings": [ |
46 | | - { |
47 | | - "command": "rtdbin.createBin", |
48 | | - "key": "ctrl+; h", |
49 | | - "when": "activeEditor || activePanel == 'workbench.panel.output'" |
50 | | - } |
51 | | - ], |
52 | | - "menus": { |
53 | | - "commandPalette": [ |
54 | | - { |
55 | | - "command": "rtdbin.createBin", |
56 | | - "title": "Create a bin", |
57 | | - "category": "Bin", |
58 | | - "when": "activeEditor || activePanel == 'workbench.panel.output'" |
59 | | - } |
60 | | - ], |
61 | | - "explorer/context": [ |
62 | | - { |
63 | | - "command": "rtdbin.createBin", |
64 | | - "group": "5_cutcopypaste", |
65 | | - "when": "!explorerResourceIsFolder" |
66 | | - } |
67 | | - ], |
68 | | - "editor/context": [ |
69 | | - { |
70 | | - "command": "rtdbin.createBin", |
71 | | - "group": "9_cutcopypaste", |
72 | | - "when": "editorTextFocus" |
73 | | - } |
74 | | - ] |
75 | | - }, |
76 | | - "configuration": { |
77 | | - "title": "Read The Bin", |
78 | | - "properties": { |
79 | | - "rtdbin.defaultLifetime": { |
80 | | - "type": "string", |
81 | | - "default": "0", |
82 | | - "pattern": "^[\\ddhms]+$", |
83 | | - "markdownDescription": "The default lifetime of your futures bins (0 for never, else in this format: 1d1h1m1s)" |
84 | | - }, |
85 | | - "rtdbin.defaultMaxUses": { |
86 | | - "type": "integer", |
87 | | - "default": "0", |
88 | | - "description": "The default max uses of your futures bins (0 for infinity)" |
89 | | - } |
90 | | - } |
91 | | - } |
92 | | - }, |
93 | | - "categories": [ |
94 | | - "Other" |
95 | | - ], |
96 | | - "dependencies": { |
97 | | - "form-data": "^4.0.0", |
98 | | - "got": "^11.8.2" |
99 | | - }, |
100 | | - "devDependencies": { |
101 | | - "@types/node": "^15.0.2", |
102 | | - "@types/vscode": "^1.52.0", |
103 | | - "@typescord/eslint-config": "^0.2.1", |
104 | | - "@typescord/prettier-config": "^0.1.2", |
105 | | - "@typescript-eslint/eslint-plugin": "^4.22.1", |
106 | | - "@typescript-eslint/parser": "^4.22.1", |
107 | | - "eslint": "^7.26.0", |
108 | | - "eslint-config-prettier": "^8.3.0", |
109 | | - "eslint-import-resolver-node": "^0.3.4", |
110 | | - "eslint-plugin-import": "^2.22.1", |
111 | | - "eslint-plugin-prettier": "^3.4.0", |
112 | | - "eslint-plugin-simple-import-sort": "^7.0.0", |
113 | | - "eslint-plugin-sonarjs": "^0.7.0", |
114 | | - "eslint-plugin-unicorn": "^32.0.1", |
115 | | - "ovsx": "0.1.0", |
116 | | - "prettier": "^2.3.0", |
117 | | - "rimraf": "^3.0.2", |
118 | | - "typescript": "~4.2.4", |
119 | | - "vsce": "^1.84.0" |
120 | | - }, |
121 | | - "keywords": [ |
122 | | - "bin", |
123 | | - "rtdbin", |
124 | | - "pastebin" |
125 | | - ] |
| 2 | + "name": "rtdbin", |
| 3 | + "displayName": "Read The Bin", |
| 4 | + "publisher": "readthedocs", |
| 5 | + "description": "An extension to easily create bins.", |
| 6 | + "version": "0.2.3", |
| 7 | + "icon": "media/icon.png", |
| 8 | + "main": "build/extension.js", |
| 9 | + "prettier": "@typescord/prettier-config", |
| 10 | + "scripts": { |
| 11 | + "vscode:prepublish": "yarn build", |
| 12 | + "deploy-ovsx": "ovsx publish", |
| 13 | + "package": "vsce package --yarn -o bin.vsix", |
| 14 | + "build": "tsc", |
| 15 | + "watch": "tsc -w", |
| 16 | + "lint": "eslint src --ext ts", |
| 17 | + "lint-fix": "yarn lint --fix", |
| 18 | + "format": "prettier . --write" |
| 19 | + }, |
| 20 | + "author": "Read The Docs FR", |
| 21 | + "engines": { |
| 22 | + "vscode": "^1.52.0" |
| 23 | + }, |
| 24 | + "license": "MIT", |
| 25 | + "homepage": "https://github.com/readthedocs-fr/bin-client-vscode#readme", |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "git+https://github.com/readthedocs-fr/bin-client-vscode.git" |
| 29 | + }, |
| 30 | + "bugs": { |
| 31 | + "url": "https://github.com/readthedocs-fr/bin-client-discord/issues" |
| 32 | + }, |
| 33 | + "activationEvents": [ |
| 34 | + "onCommand:rtdbin.createBin" |
| 35 | + ], |
| 36 | + "contributes": { |
| 37 | + "commands": [ |
| 38 | + { |
| 39 | + "command": "rtdbin.createBin", |
| 40 | + "title": "Create a bin", |
| 41 | + "category": "Bin", |
| 42 | + "enablement": "activeEditor || activePanel == 'workbench.panel.output' || explorerViewletVisible && !explorerResourceIsFolder" |
| 43 | + } |
| 44 | + ], |
| 45 | + "keybindings": [ |
| 46 | + { |
| 47 | + "command": "rtdbin.createBin", |
| 48 | + "key": "ctrl+; h", |
| 49 | + "when": "activeEditor || activePanel == 'workbench.panel.output'" |
| 50 | + } |
| 51 | + ], |
| 52 | + "menus": { |
| 53 | + "commandPalette": [ |
| 54 | + { |
| 55 | + "command": "rtdbin.createBin", |
| 56 | + "title": "Create a bin", |
| 57 | + "category": "Bin", |
| 58 | + "when": "activeEditor || activePanel == 'workbench.panel.output'" |
| 59 | + } |
| 60 | + ], |
| 61 | + "explorer/context": [ |
| 62 | + { |
| 63 | + "command": "rtdbin.createBin", |
| 64 | + "group": "5_cutcopypaste", |
| 65 | + "when": "!explorerResourceIsFolder" |
| 66 | + } |
| 67 | + ], |
| 68 | + "editor/context": [ |
| 69 | + { |
| 70 | + "command": "rtdbin.createBin", |
| 71 | + "group": "9_cutcopypaste", |
| 72 | + "when": "editorTextFocus" |
| 73 | + } |
| 74 | + ] |
| 75 | + }, |
| 76 | + "configuration": { |
| 77 | + "title": "Read The Bin", |
| 78 | + "properties": { |
| 79 | + "rtdbin.defaultLifetime": { |
| 80 | + "type": "string", |
| 81 | + "default": "0", |
| 82 | + "pattern": "^[\\ddhms]+$", |
| 83 | + "markdownDescription": "The default lifetime of your futures bins (0 for never, else in this format: 1d1h1m1s)" |
| 84 | + }, |
| 85 | + "rtdbin.defaultMaxUses": { |
| 86 | + "type": "integer", |
| 87 | + "default": "0", |
| 88 | + "description": "The default max uses of your futures bins (0 for infinity)" |
| 89 | + } |
| 90 | + } |
| 91 | + } |
| 92 | + }, |
| 93 | + "categories": [ |
| 94 | + "Other" |
| 95 | + ], |
| 96 | + "dependencies": { |
| 97 | + "form-data": "^4.0.0", |
| 98 | + "got": "^11.8.2" |
| 99 | + }, |
| 100 | + "devDependencies": { |
| 101 | + "@types/node": "^15.0.2", |
| 102 | + "@types/vscode": "^1.52.0", |
| 103 | + "@typescord/eslint-config": "^0.2.1", |
| 104 | + "@typescord/prettier-config": "^0.1.2", |
| 105 | + "@typescript-eslint/eslint-plugin": "^4.22.1", |
| 106 | + "@typescript-eslint/parser": "^4.22.1", |
| 107 | + "eslint": "^7.26.0", |
| 108 | + "eslint-config-prettier": "^8.3.0", |
| 109 | + "eslint-import-resolver-node": "^0.3.4", |
| 110 | + "eslint-plugin-import": "^2.22.1", |
| 111 | + "eslint-plugin-prettier": "^3.4.0", |
| 112 | + "eslint-plugin-simple-import-sort": "^7.0.0", |
| 113 | + "eslint-plugin-sonarjs": "^0.7.0", |
| 114 | + "eslint-plugin-unicorn": "^32.0.1", |
| 115 | + "ovsx": "0.1.0", |
| 116 | + "prettier": "^2.3.0", |
| 117 | + "rimraf": "^3.0.2", |
| 118 | + "typescript": "~4.2.4", |
| 119 | + "vsce": "^1.84.0" |
| 120 | + }, |
| 121 | + "keywords": [ |
| 122 | + "bin", |
| 123 | + "rtdbin", |
| 124 | + "pastebin" |
| 125 | + ] |
126 | 126 | } |
0 commit comments