This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
forked from alejalapeno/scaffixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.36 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
{
"name": "scaffixer",
"displayName": "Scaffixer",
"repository": {
"type": "git",
"url": "https://github.com/alejalapeno/scaffixer"
},
"icon": "assets/icon.png",
"description": "A context shortcut for scaffolding out entire files and directory trees for when snippets just aren't enough.",
"version": "0.0.2",
"license": "MIT",
"publisher": "alejalapeno",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"scaffolding",
"templates",
"ejs"
],
"activationEvents": [
"onCommand:scaffixer.context"
],
"main": "./out/index.js",
"contributes": {
"configuration": {
"title": "Scaffixer",
"properties": {
"scaffixer.templates": {
"type": "array",
"markdownDescription": "Setup your Scaffixer templates & prompts.\n\nExample: \n```json\n{\n \"name\": \"React Component\",\n \"description\": \"Create a new React component directory with SCSS module.\",\n \"location\": \"/Users/steve/templates/scaffixer-react-component\",\n \"prompts\": [\"Name\"]\n}\n```\n \n- `name` [string] Displayed template name.\n- `location` [string] Absolute path to a template directory or file. If a directory only the contents will be Scaffixed, if you want the directory included in the template it must be nested.\n- `description` [string] (optional) Displayed description of template.\n- `prompts` [array of strings] Name of values to collect input for template, must match EJS names. "
}
}
},
"commands": [
{
"command": "scaffixer.context",
"title": "Scaffix"
}
],
"menus": {
"explorer/context": [
{
"command": "scaffixer.context",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/vscode": "^1.46.0",
"@types/ejs": "^3.0.4",
"@types/fs-extra": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
},
"dependencies": {
"ejs": "^3.1.3",
"fs-extra": "^9.0.1"
}
}