-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.04 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
82
83
84
85
86
87
88
89
{
"name": "@storybook/addon-webpack5-compiler-babel",
"version": "3.0.5",
"type": "module",
"description": "Adds babel as a Webpack5 compiler to Storybook",
"keywords": [
"storybook-addons",
"webpack5",
"babel"
],
"repository": {
"type": "git",
"url": "git+https://github.com/storybookjs/addon-webpack5-compiler-babel.git"
},
"scripts": {
"build": "tsup",
"format": "biome format ./src",
"format:write": "pnpm format --write",
"check": "biome check ./src",
"check:apply": "pnpm check --apply",
"check:apply-unsafe": "pnpm check --apply-unsafe",
"check:ci": "biome ci ./src",
"release": "auto shipit"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./preset": "./dist/preset.cjs",
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"files": [
"dist/**/*",
"preset.js",
"src/**/*",
"README.md"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Addon Webpack5 Compiler Babel",
"supportedFrameworks": [
"react",
"preact",
"vue",
"web-components",
"html",
"svelte"
]
},
"dependencies": {
"@babel/core": "^7.26.0",
"babel-loader": "^9.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@storybook/manager": "8.4.7",
"@storybook/preview": "8.4.7",
"@storybook/types": "8.4.7",
"auto": "^11.3.0",
"find-cache-dir": "^5.0.0",
"find-up": "^7.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"webpack": "^5.97.1"
},
"engines": {
"node": ">=18"
},
"author": "Storybook Bot <[email protected]>",
"auto": {
"plugins": [
"npm"
]
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"nodeEntries": [
"src/preset.ts"
]
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}