-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.02 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.02 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
79
80
81
82
{
"name": "@storybook/addon-webpack5-compiler-babel",
"version": "4.0.1",
"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"
},
"license": "MIT",
"author": "Storybook Bot <storybookbot@gmail.com>",
"type": "module",
"exports": {
".": {
"default": "./dist/index.js"
},
"./preset": "./dist/preset.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"preset.js",
"src/**/*",
"README.md"
],
"scripts": {
"build": "tsup",
"check": "biome check ./src",
"check:apply": "pnpm check --apply",
"check:apply-unsafe": "pnpm check --apply-unsafe",
"check:ci": "biome ci ./src",
"format": "biome format ./src",
"format:write": "pnpm format --write",
"release": "pnpm build && pnpm changeset publish",
"changeset": "changeset"
},
"dependencies": {
"@babel/core": "^7.26.0",
"babel-loader": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@types/node": "^22",
"find-cache-dir": "^6.0.0",
"pkg-pr-new": "^0.0.57",
"storybook": "^10.0.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"webpack": "^5.97.1"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"bundler": {
"previewEntries": [
"src/index.ts"
],
"nodeEntries": [
"src/preset.ts"
]
},
"storybook": {
"displayName": "Addon Webpack5 Compiler Babel",
"supportedFrameworks": [
"react",
"preact",
"vue",
"web-components",
"html",
"svelte"
]
}
}