-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "@alexgorbatchev/storybook-parameters",
"version": "4.2.1",
"description": "TypeScript helpers for strongly typed Storybook parameters",
"keywords": [
"storybook",
"parameters",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/alexgorbatchev/storybook-parameters"
},
"authors": [
"Alex Gorbatchev <[email protected]>"
],
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"node": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.png",
"!src/**/*"
],
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@storybook/react": "^8.1.5",
"@storybook/types": "^8.1.5",
"@swc/core": "^1.5.27",
"@types/react": "^18.3.3",
"prettier": "^3.2.5",
"react": "^18.3.1",
"storybook": "^8.1.5",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}