-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.01 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.01 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
83
84
{
"name": "@storybook/addon-designs",
"version": "10.0.0",
"description": "Storybook addon for embedding your design preview in addon panel",
"keywords": [
"storybook-addon",
"design",
"figma",
"figspec",
"image",
"preview"
],
"homepage": "https://github.com/storybookjs/addon-designs",
"repository": "git@github.com:storybookjs/addon-designs.git",
"license": "MIT",
"author": "pocka <pockawoooh@gmail.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./blocks": "./dist/blocks.js",
"./register-panel": "./dist/register-panel.js",
"./register-tab": "./dist/register-tab.js",
"./preset": "./dist/preset.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "cp ../../README.md ./",
"release": "npm run prepublishOnly && auto shipit"
},
"dependencies": {
"@figspec/react": "^1.0.0"
},
"peerDependencies": {
"@storybook/addon-docs": "^10.0.0 || ^10.0.0-0",
"storybook": "^10.0.0 || ^10.0.0-0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@storybook/addon-docs": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/register-panel.ts",
"src/register-tab.ts"
],
"previewEntries": [
"src/blocks.tsx"
],
"nodeEntries": [
"src/preset.ts"
]
},
"storybook": {
"icon": "https://raw.githubusercontent.com/storybookjs/addon-designs/master/packages/examples/assets/logo.png",
"displayName": "Designs"
}
}