|
1 | 1 | { |
2 | | - "name": "booker", |
3 | | - "displayName": "booker", |
4 | | - "description": "move between files in vscode BLAZINGLY FAST", |
5 | | - "version": "0.99.3", |
6 | | - "repository": { |
7 | | - "type": "git", |
8 | | - "url": "https://github.com/nagy-nabil/booker" |
9 | | - }, |
10 | | - "publisher": "nagy-nabil", |
11 | | - "author": { |
12 | | - "name": "nagy-nabil" |
13 | | - }, |
14 | | - "bugs": { |
15 | | - "url": "https://github.com/nagy-nabil/booker/issues" |
16 | | - }, |
17 | | - "icon": "assets/logo.jpeg", |
18 | | - "engines": { |
19 | | - "vscode": "^1.77.0" |
20 | | - }, |
21 | | - "categories": [ |
22 | | - "Other" |
23 | | - ], |
24 | | - "activationEvents": [], |
25 | | - "main": "./out/extension.js", |
26 | | - "contributes": { |
27 | | - "commands": [ |
28 | | - { |
29 | | - "command": "booker.mark.add", |
30 | | - "title": "booker: add mark at current active editor" |
31 | | - }, |
32 | | - { |
33 | | - "command": "booker.mark.remove", |
34 | | - "title": "booker: remove mark from current active editor" |
35 | | - }, |
36 | | - { |
37 | | - "command": "booker.mark.show", |
38 | | - "title": "booker: show quick pick for all marked files" |
39 | | - }, |
40 | | - { |
41 | | - "command": "booker.mark.jump1", |
42 | | - "title": "booker: jump to first mark" |
43 | | - }, |
44 | | - { |
45 | | - "command": "booker.mark.jump2", |
46 | | - "title": "booker: jump to second mark" |
47 | | - }, |
48 | | - { |
49 | | - "command": "booker.mark.jump3", |
50 | | - "title": "booker: jump to third mark" |
51 | | - }, |
52 | | - { |
53 | | - "command": "booker.ui.show", |
54 | | - "title": "booker: show booker editor ui" |
55 | | - } |
56 | | - ] |
57 | | - }, |
58 | | - "scripts": { |
59 | | - "vscode:prepublish": "npm run compile", |
60 | | - "compile": "tsc -p ./", |
61 | | - "watch": "tsc -watch -p ./", |
62 | | - "pretest": "npm run compile && npm run lint", |
63 | | - "lint": "eslint src --ext ts", |
64 | | - "test": "node ./out/test/runTest.js", |
65 | | - "deploy": "npx vsce publish" |
66 | | - }, |
67 | | - "devDependencies": { |
68 | | - "@types/glob": "^8.1.0", |
69 | | - "@types/mocha": "^10.0.6", |
70 | | - "@types/node": "~20.11.28", |
71 | | - "@types/vscode": "^1.87.0", |
72 | | - "@typescript-eslint/eslint-plugin": "^7.2.0", |
73 | | - "@typescript-eslint/parser": "^7.2.0", |
74 | | - "@vscode/test-electron": "^2.3.9", |
75 | | - "eslint": "^8.57.0", |
76 | | - "glob": "^10.3.10", |
77 | | - "mocha": "^10.3.0", |
78 | | - "typescript": "^5.4.2" |
79 | | - } |
| 2 | + "name": "booker", |
| 3 | + "displayName": "booker", |
| 4 | + "description": "move between files in vscode BLAZINGLY FAST", |
| 5 | + "version": "0.99.4", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "https://github.com/nagy-nabil/booker" |
| 9 | + }, |
| 10 | + "publisher": "nagy-nabil", |
| 11 | + "author": { |
| 12 | + "name": "nagy-nabil" |
| 13 | + }, |
| 14 | + "bugs": { |
| 15 | + "url": "https://github.com/nagy-nabil/booker/issues" |
| 16 | + }, |
| 17 | + "icon": "assets/logo.jpeg", |
| 18 | + "engines": { |
| 19 | + "vscode": "^1.77.0" |
| 20 | + }, |
| 21 | + "categories": [ |
| 22 | + "Other" |
| 23 | + ], |
| 24 | + "activationEvents": [], |
| 25 | + "main": "./out/extension.js", |
| 26 | + "contributes": { |
| 27 | + "commands": [ |
| 28 | + { |
| 29 | + "command": "booker.mark.add", |
| 30 | + "title": "booker: add mark at current active editor" |
| 31 | + }, |
| 32 | + { |
| 33 | + "command": "booker.mark.remove", |
| 34 | + "title": "booker: remove mark from current active editor" |
| 35 | + }, |
| 36 | + { |
| 37 | + "command": "booker.mark.show", |
| 38 | + "title": "booker: show quick pick for all marked files" |
| 39 | + }, |
| 40 | + { |
| 41 | + "command": "booker.mark.jump1", |
| 42 | + "title": "booker: jump to first mark" |
| 43 | + }, |
| 44 | + { |
| 45 | + "command": "booker.mark.jump2", |
| 46 | + "title": "booker: jump to second mark" |
| 47 | + }, |
| 48 | + { |
| 49 | + "command": "booker.mark.jump3", |
| 50 | + "title": "booker: jump to third mark" |
| 51 | + }, |
| 52 | + { |
| 53 | + "command": "booker.ui.show", |
| 54 | + "title": "booker: show booker editor ui" |
| 55 | + } |
| 56 | + ] |
| 57 | + }, |
| 58 | + "scripts": { |
| 59 | + "vscode:prepublish": "npm run compile", |
| 60 | + "compile": "tsc -p ./", |
| 61 | + "watch": "tsc -watch -p ./", |
| 62 | + "pretest": "npm run compile && npm run lint", |
| 63 | + "lint": "eslint src --ext ts", |
| 64 | + "test": "node ./out/test/runTest.js", |
| 65 | + "deploy": "npx vsce publish" |
| 66 | + }, |
| 67 | + "devDependencies": { |
| 68 | + "@types/glob": "^8.1.0", |
| 69 | + "@types/mocha": "^10.0.6", |
| 70 | + "@types/node": "~20.11.28", |
| 71 | + "@types/vscode": "^1.87.0", |
| 72 | + "@typescript-eslint/eslint-plugin": "^7.2.0", |
| 73 | + "@typescript-eslint/parser": "^7.2.0", |
| 74 | + "@vscode/test-electron": "^2.3.9", |
| 75 | + "eslint": "^8.57.0", |
| 76 | + "glob": "^10.3.10", |
| 77 | + "mocha": "^10.3.0", |
| 78 | + "typescript": "^5.4.2" |
| 79 | + } |
80 | 80 | } |
0 commit comments