forked from storybookjs/addon-styling-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.88 KB
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
{
"name": "@storybook/addon-styling-webpack",
"version": "2.0.0",
"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": "goodeveningshaun@gmail.com"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./preset": {
"types": "./dist/preset.d.ts",
"import": "./dist/preset.js"
},
"./package.json": "./package.json",
"./postinstall": "./postinstall.js"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/**/*",
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"build:watch": "pnpm build --watch",
"release": "auto shipit"
},
"devDependencies": {
"@types/node": "^22.15.29",
"auto": "^11.3.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"storybook": "^10.0.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"webpack": "^5.99.9"
},
"peerDependencies": {
"storybook": "^10.0.0",
"webpack": "^5.0.0"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6",
"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"
}
}