-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "storybook-docs-themes",
"version": "1.0.1",
"description": "Set up theme colours of documentation previews in Storybook stories.",
"author": "Ferdinand Prantl <prantlf@gmail.com> (http://prantl.tk)",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/storybook-docs-themes/blob/master/LICENSE"
}
],
"homepage": "http://prantlf.github.com/storybook-docs-themes/",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/storybook-docs-themes.git"
},
"bugs": {
"url": "http://github.com/prantlf/storybook-docs-themes/issues"
},
"files": [
"stylesheets"
],
"scripts": {
"prepare": "esbuild --minify --sourcemap --outfile=stylesheets/vscode-dark-plus.min.css stylesheets/vscode-dark-plus.css",
"test": "stylelint stylesheets"
},
"stylelint": {
"extends": "stylelint-config-standard-scss",
"plugins": [
"stylelint-prettier"
],
"rules": {
"prettier/prettier": true
},
"ignoreFiles": [
"**/*.map",
"**/*.min.css"
],
"defaultSeverity": "warning",
"cache": true
},
"devDependencies": {
"esbuild": "0.24.0",
"prettier": "3.4.2",
"stylelint": "16.11.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-prettier": "5.0.2"
},
"keywords": [
"storybook-addons",
"storybook-addon",
"storybook",
"storybookjs",
"addon",
"theme",
"stylesheet",
"styles"
]
}