-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "@chialab/storybook-dna",
"version": "8.0.8",
"description": "The library used to render Storybook stories with DNA.",
"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/"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./preset": "./preset.js",
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
"./dist/entry-preview-docs.mjs": "./dist/entry-preview-docs.mjs",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"dependencies": {
"@storybook/client-logger": "^8.0.0",
"@storybook/core-events": "^8.0.0",
"@storybook/docs-tools": "^8.0.0",
"@storybook/preview-api": "^8.0.0",
"@storybook/types": "^8.0.0",
"ts-dedent": "^2.0.0"
},
"devDependencies": {
"@chialab/dna": "^4.0.0",
"@types/react": "^18.0.26",
"custom-elements-manifest": "^2.0.0",
"storybook": "^8.0.0"
},
"peerDependencies": {
"@chialab/dna": "^4.0.0",
"storybook": "^8.0.0"
}
}