generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
119 lines (119 loc) · 3.1 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
{
"name": "@outlinestudio/designtokenscss",
"version": "1.0.12",
"description": "Addon storybook to themes using design tokens with css variables",
"keywords": [
"style",
"css",
"variable-css",
"storybook-addon-variablescss-theme",
"themes",
"Design",
"designtokens",
"figma-tokens"
],
"repository": {
"type": "git",
"url": "https://github.com/raulmelo/addon-variablecss-theme"
},
"license": "MIT",
"author": "Raul Melo <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./manager": "./dist/manager.mjs",
"./preview": "./dist/preview.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"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsup",
"build:watch": "npm run build -- --watch",
"start": "run-p build:watch 'storybook --quiet'",
"test": "echo \"Error: no test specified\" && exit 1",
"prerelease": "zx scripts/prepublish-checks.mjs",
"release": "npm run build && auto shipit",
"eject-ts": "zx scripts/eject-typescript.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-essentials": "7.6.2",
"@storybook/addon-interactions": "7.6.2",
"@storybook/addon-links": "7.6.2",
"@storybook/addon-mdx-gfm": "^7.6.2",
"@storybook/blocks": "7.6.2",
"@storybook/components": "7.6.2",
"@storybook/core-events": "7.6.2",
"@storybook/manager": "7.6.2",
"@storybook/manager-api": "7.6.2",
"@storybook/preview": "7.6.2",
"@storybook/preview-api": "7.6.2",
"@storybook/react": "7.6.2",
"@storybook/react-vite": "7.6.2",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "7.6.2",
"@storybook/types": "7.6.2",
"@types/node": "^18.15.0",
"@types/react": "^16.14.51",
"@types/react-dom": "^16.9.22",
"@vitejs/plugin-react": "^4.1.1",
"auto": "^11.0.4",
"boxen": "^7.1.1",
"dedent": "^1.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prompts": "^2.4.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^5.0.5",
"storybook": "7.6.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"zx": "^7.2.3"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.ts"
],
"previewEntries": [
"src/preview.ts"
]
},
"storybook": {
"displayName": "designtokenscss",
"supportedFrameworks": [
"react",
"vue",
"angular",
"mithril",
"riot",
"ember",
"preact",
"svelte",
"web-components"
],
"icon": "https://raw.githubusercontent.com/raulmelo/addon-variablecss-theme/main/_docs/designtokensStorybook.png"
}
}