-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.06 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "multiview",
"publisher": "Fullscript",
"displayName": "MultiView",
"description": "Remap your codebase the way you like.",
"version": "0.5.2",
"icon": "logo/multiview-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/TheDro/multiview-extension.git"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "multiView.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "multiView.selectCategory",
"title": "Select Category"
}
],
"configuration": {
"title": "MultiView",
"type": "object",
"properties": {
"multiView.conversions": {
"title": "Conversions",
"markdownDescription": "List of regular expressions for converting from one file system schema to another. Should be of the format:\n\n```json\n\"multiview.conversions\": {\n \"<categoryName>\": [[\"<regex1>\", \"<replacement1>\"], [\"<regex2>\", \"<replacement2>\"], ...],\n \"<otherCategoryName>\": [...]\n}\n// Example\n\"multiview.conversions\": {\n \"adjacentSpecs\": [[\"spec/(.*)\", \"app/$1\"]],\n \"componentize\": [\n [\"src/views/(.*)\\\\.html\", \"src/components/$1/$1.html\"],\n [\"src/styles/(.*)\\\\.css\", \"src/components/$1/$1.css\"],\n [\"src/js/(.*)\\\\.js\", \"src/components/$1/$1.js\"]\n ]\n}\n```",
"type": "object",
"default": {
"adjacentSpecs": [
[
"spec/(.*)",
"app/$1"
]
]
}
},
"multiView.ignorePath": {
"title": "Ignore File",
"markdownDescription": "Relative path to a file containing a list of files to ignore. Should follow the same format as `.gitignore` files.",
"type": "string",
"default": ".gitignore"
}
}
},
"menus": {
"view/title": [
{
"command": "multiView.refresh",
"when": "view == multiView",
"group": "navigation"
},
{
"command": "multiView.selectCategory",
"when": "view == multiView"
}
]
},
"views": {
"explorer": [
{
"id": "multiView",
"name": "Multi-view"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vscode/test-electron": "^2.2.2",
"eslint": "^8.33.0",
"glob": "^8.1.0",
"mocha": "^10.1.0",
"typescript": "^4.9.4"
},
"dependencies": {
"ignore": "^5.2.4"
}
}