-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "path-switcher",
"displayName": "Path Switcher",
"description": "Toggle relative <-> absolute JS paths easily in VS Code",
"version": "1.1.0",
"publisher": "fatonyahmadfauzi",
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fatonyahmadfauzi/Path-Switcher.git"
},
"categories": ["Other"],
"activationEvents": [
"onCommand:path-switcher.togglePath"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "path-switcher.togglePath",
"title": "Toggle Path (Absolute <-> Relative)"
}
],
"keybindings": [
{
"command": "path-switcher.togglePath",
"key": "ctrl+alt+p",
"when": "editorTextFocus"
}
]
},
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/fatonyahmadfauzi/Path-Switcher/issues"
},
"homepage": "https://github.com/fatonyahmadfauzi/Path-Switcher#readme",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"mocha": "^11.7.4",
"typescript": "^5.9.3"
}
}