-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "@chialab/storybook-dna-vite",
"version": "8.1.1",
"description": "Storybook for DNA and Vite.",
"type": "module",
"keywords": [
"storybook"
],
"homepage": "https://github.com/chialab/dna-tools/",
"bugs": {
"url": "https://github.com/chialab/dna-tools/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chialab/dna-tools.git",
"directory": "packages/storybook-dna-vite/"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./preset": {
"types": "./dist/preset.d.ts",
"require": "./dist/preset.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"template/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"dependencies": {
"@chialab/manifest-analyzer-dna-plugin": "^3.2.0",
"@chialab/storybook-dna": "^8.0.4",
"@chialab/vite-plugin-hmr-dna": "^4.1.0",
"@custom-elements-manifest/analyzer": "^0.10.0",
"@rollup/pluginutils": "^5.0.2",
"@storybook/builder-vite": "^8.0.0",
"magic-string": "^0.27.0",
"remark-gfm": "^4.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"storybook": "^8.0.0",
"vite": "^5.0.0 || ^6.0.0"
},
"devDependencies": {
"storybook": "^8.0.0",
"vite": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}