-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.5 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
{
"name": "storymate",
"displayName": "StoryMate",
"icon": "icon.png",
"description": "Automatically generate Storybook stories for React components",
"version": "0.3.1",
"publisher": "simun-kordis",
"author": {
"name": "Šimun Kordiš"
},
"homepage": "https://github.com/SamuraiF0x/StoryMate/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/SamuraiF0x/StoryMate"
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Auto Story Generator",
"properties": {
"storyMate.watchDirectories": {
"type": "array",
"default": [
"ui/src/components/**/*"
],
"description": "Directories to watch for new files"
},
"storyMate.templatePath": {
"type": "string",
"default": "",
"description": "Path to the Storybook template file"
},
"storyMate.fileExtensions": {
"type": "array",
"default": [
".tsx"
],
"description": "Which file types to look for when scanning components"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/node": "^18.x",
"@types/vscode": "^1.85.0",
"@types/handlebars": "^4.1.0",
"typescript": "^5.x"
},
"keywords": []
}