-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
143 lines (143 loc) · 3.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "storybook-addon-tag-badges",
"version": "0.0.0-semantically-released",
"description": "Display Storybook tags as badges in the sidebar and toolbar.",
"keywords": [
"storybook-addons",
"storybook",
"badges",
"tags",
"organize"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sidnioulz/storybook-addon-tag-badges.git"
},
"type": "module",
"author": "Steve Dodier-Lazaro <[email protected]>",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./manager": "./dist/manager.js",
"./preview": {
"types": "./dist/index.d.ts",
"import": "./dist/preview.js",
"require": "./dist/preview.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"manager.js",
"preview.js"
],
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.tsx"
],
"previewEntries": [
"src/preview.ts"
]
},
"scripts": {
"build": "tsup",
"build:storybook": "storybook build",
"build:watch": "pnpm build --watch",
"clean": "rimraf ./dist",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix",
"pack": "pnpm pack --out storybook-addon-tag-badges-$(date +%s).tgz",
"prebuild": "pnpm clean",
"prepare": "husky",
"prerelease": "zx scripts/prepublish-checks.js",
"release": "pnpm build && pnpm semantic-release",
"start": "run-p build:watch \"storybook --quiet\"",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@storybook/icons": "^1.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/builder-vite": "^8.5.0",
"@storybook/components": "^8.5.0",
"@storybook/manager": "^8.5.0",
"@storybook/manager-api": "^8.5.0",
"@storybook/preview-api": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/react-vite": "^8.5.0",
"@storybook/test": "^8.5.0",
"@storybook/theming": "^8.5.0",
"@storybook/types": "^8.5.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "3.0.2",
"boxen": "^8.0.1",
"commitlint": "^19.6.1",
"dedent": "^1.5.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prompts": "^2.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"storybook": "^8.5.0",
"tosource": "2.0.0-alpha.3",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.9",
"vitest": "^3.0.2",
"zx": "^8.3.0"
},
"peerDependencies": {
"storybook": "^8.4.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"storybook": {
"displayName": "Tag Badges",
"supportedFrameworks": [
"supported-frameworks"
],
"icon": "https://raw.githubusercontent.com/Sidnioulz/storybook-addon-tag-badges/main/static/icon.png"
}
}