generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
129 lines (129 loc) · 3.55 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@storybook/addon-svelte-csf",
"version": "4.1.7",
"description": "Allows to write stories in Svelte syntax",
"keywords": [
"storybook-addons",
"svelte"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/addon-svelte-csf"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./preset": {
"types": "./dist/preset/index.d.ts",
"default": "./dist/preset/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "svelte-package --input ./src --types",
"build-storybook": "storybook build",
"check": "svelte-check",
"chromatic": "chromatic --exit-zero-on-changes",
"clean": "rimraf ./dist",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"prepublish": "pnpm run clean && pnpm run build",
"release": "pnpm run build && auto shipit",
"start": "concurrently \"pnpm run storybook --quiet\" \"pnpm run build --watch\"",
"storybook": "storybook dev --port 6006",
"test": "vitest run"
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"@storybook/types": "^8.0.0",
"dedent": "^1.2.0",
"magic-string": "^0.30.1"
},
"devDependencies": {
"@auto-it/released": "^10.32.6",
"@storybook/addon-actions": "~8.1.0",
"@storybook/addon-essentials": "~8.1.0",
"@storybook/addon-interactions": "~8.1.0",
"@storybook/blocks": "~8.1.0",
"@storybook/client-logger": "~8.1.0",
"@storybook/components": "~8.1.0",
"@storybook/csf": "^0.1.1",
"@storybook/eslint-config-storybook": "^3.1.2",
"@storybook/preview-api": "~8.1.0",
"@storybook/svelte": "~8.1.0",
"@storybook/svelte-vite": "~8.1.0",
"@storybook/test": "~8.1.0",
"@storybook/theming": "~8.1.0",
"@sveltejs/kit": "^2.5.7",
"@sveltejs/package": "^2.2.0",
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@tsconfig/svelte": "^5.0.0",
"@types/estree": "^1.0.1",
"auto": "^11.1.1",
"chromatic": "^11.3.5",
"concurrently": "^8.2.0",
"eslint": "^7.17.0",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"storybook": "~8.1.0",
"svelte": "^4.2.2",
"svelte-check": "^3.5.0",
"svelte-jester": "^2.3.2",
"svelte-loader": "^3.1.7",
"svelte-package": "^0.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@storybook/svelte": "^7.0.0 || ^8.0.0 || ^8.0.0-beta.0 || ^8.2.0-beta.0",
"@sveltejs/vite-plugin-svelte": "^2.0.0 || ^3.0.0",
"svelte": "^4.0.0",
"svelte-loader": "^3.1.2",
"vite": "^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"@sveltejs/vite-plugin-svelte": {
"optional": true
},
"svelte-loader": {
"optional": true
},
"vite": {
"optional": true
}
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"auto": {
"plugins": [
"npm",
"released"
]
},
"storybook": {
"displayName": "Svelte CSF",
"supportedFrameworks": [
"svelte"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
}
}