-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "new-fractal-folder",
"displayName": "New Fractal Folder",
"description": "Create a twig, scss, and config.js file with the same name of a new folder",
"version": "0.1.0",
"publisher": "baerkins",
"keywords": [
"fractal",
"create file"
],
"repository": {
"type": "git",
"url": "https://github.com/baerkins/vscode-fractal-folder.git"
},
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:createFractalFolder"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "New Fractal Folder",
"properties": {
"new-fractal-folder.fractalFileFormat": {
"type": "string",
"default": "hbs",
"description": "Name of file extension to create for fractal files. Do not include the dot. Example: `twig`, `hbs`"
},
"new-fractal-folder.configFileFormat": {
"type": "string",
"enum": [
"js",
"json",
"yml"
],
"default": "js",
"description": "Type of config file to generate"
},
"new-fractal-folder.readmeFile": {
"type": "boolean",
"default": false,
"description": "Create README.md file"
},
"new-fractal-folder.customExtensions": {
"type": "string",
"default": "",
"description": "A comma seperated list of file extensions to create with folder name, without proceeding dot. Example: `scss,jsx,less,styl`"
}
}
},
"commands": [
{
"command": "createFractalFolder",
"title": "Create New Fractal Folder"
}
],
"menus": {
"explorer/context": [
{
"command": "createFractalFolder",
"group": "1_modification"
}
]
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"eslint": "^8.2.0",
"typescript": "^4.4.4",
"vscode": "^1.1.30"
},
"dependencies": {
"@types/vscode": "^1.62.0"
}
}