-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
109 lines (109 loc) · 2.91 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
{
"name": "@storybook/addon-designs",
"version": "8.0.0-alpha.1",
"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": "[email protected]:storybookjs/addon-designs.git",
"license": "MIT",
"author": "pocka <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./blocks": "./dist/blocks.mjs",
"./preset": "./dist/preset.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "cp ../../README.md ./ && npm run build",
"release": "npm run prepublishOnly && auto shipit",
"test": "echo 'No tests' && exit 0"
},
"dependencies": {
"@figspec/react": "^1.0.0"
},
"devDependencies": {
"@auto-it/released": "^11.1.1",
"@storybook/components": "^8.0.0",
"@storybook/core-events": "^8.0.0",
"@storybook/manager-api": "^8.0.0",
"@storybook/preview-api": "^8.0.0",
"@storybook/theming": "^8.0.0",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@types/webpack-env": "^1.18.4",
"auto": "^11.1.1",
"figma-js": "^1.16.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@storybook/blocks": "^8.0.0 || ^8.1.0-0 || ^8.2.0-0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0",
"@storybook/components": "^8.0.0 || ^8.1.0-0 || ^8.2.0-0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0",
"@storybook/theming": "^8.0.0 || ^8.1.0-0 || ^8.2.0-0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@storybook/blocks": {
"optional": true
},
"@storybook/components": {
"optional": true
},
"@storybook/theming": {
"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"
}
}