forked from sebasrodriguez/RelativePath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "RelativePath",
"description": "Get relative url paths from files in the current workspace.",
"version": "0.8.0",
"repository": {
"type": "git",
"url": "https://github.com/jakob101/RelativePath"
},
"publisher": "jakob101",
"galleryBanner": {
"color": "#373277",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"license": "MIT",
"displayName": "Relative Path",
"activationEvents": [
"onCommand:extension.relativePath"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.relativePath",
"title": "Relative Path"
}],
"keybindings": [{
"command": "extension.relativePath",
"key": "ctrl+shift+h",
"mac": "cmd+shift+h",
"when": "editorTextFocus"
}],
"configuration": {
"title": "RelativePath extension configuration",
"type": "object",
"properties": {
"relativePath.ignore": {
"type": "array",
"default": ["**/node_modules/**","**/*.dll","**/obj/**","**/objd/**"],
"description": "An array of glob keys to ignore when searching.",
"items": {
"type": "string"
}
},
"relativePath.removeExtension": {
"type": "boolean",
"default": false,
"description": "Excludes the extension from the relative path url (Useful for systemjs imports)."
},
"relativePath.removeLeadingDot": {
"type": "boolean",
"default": false,
"description": "Removes the leading ./ character when the path is pointing to a parent folder."
}
}
}
},
"icon": "icon.png",
"keywords": ["relative", "path", "url", "file"],
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}