-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.84 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
{
"name": "@storybook/addon-styling-webpack",
"version": "1.0.1",
"description": "A base addon for configuring popular styling tools in Webpack",
"keywords": [
"style",
"design",
"webpack",
"configuration",
"storybook-addons"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/addon-styling-webpack"
},
"license": "MIT",
"author": {
"name": "Shaun Evening",
"email": "[email protected]"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./preset": {
"require": "./dist/preset.js",
"import": "./dist/preset.mjs",
"types": "./dist/preset.d.ts"
},
"./package.json": "./package.json",
"./postinstall": "./postinstall.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"bin/**/*",
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"build:watch": "pnpm build --watch",
"clean": "rimraf dist && rimraf bin",
"release": "pnpm build && auto shipit"
},
"dependencies": {
"@storybook/node-logger": "^8.0.0-alpha.10"
},
"devDependencies": {
"@types/node": "^18.0.0",
"auto": "^11.1.1",
"prettier": "^3.2.0",
"rimraf": "^3.0.2",
"tsup": "^6.7.0",
"typescript": "^5.3.0",
"webpack": "^5.0.0"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Styling-Webpack",
"supportedFrameworks": [
"react",
"vue",
"web-components",
"html",
"preact"
],
"icon": "https://raw.githubusercontent.com/storybookjs/addon-styling/1e17a71614dde4337f402dd5f00d761991d1a9d8/.github/media/styling.svg"
}
}