@mbao01/common
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "@mbao01/common", | ||
"private": false, | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"type": "module", | ||
@@ -16,2 +16,14 @@ "author": "Ayomide Bakare", | ||
], | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/types/index.d.ts", | ||
"default": "./src/index.ts" | ||
} | ||
}, | ||
"./plugin": "./plugin.js", | ||
"./vitest/setup": "./vitest-setup.ts", | ||
"./vitest/config": "./vitest.config.ts", | ||
"./styles": "./src/stylesheets/index.css" | ||
}, | ||
"main": "./src/index.ts", | ||
@@ -29,8 +41,2 @@ "types": "dist/types/index.d.ts", | ||
], | ||
"exports": { | ||
"./plugin": "./plugin.js", | ||
"./vitest/setup": "./vitest-setup.ts", | ||
"./vitest/config": "./vitest.config.ts", | ||
"./styles": "./src/stylesheets/index.css" | ||
}, | ||
"bugs": "https://github.com/mbao01/mbao01/issues", | ||
@@ -48,3 +54,3 @@ "homepage": "https://shared.ayomidebakare.site", | ||
"build": "tsc && vite build", | ||
"build-storybook": "storybook build", | ||
"build-storybook": "storybook build -o ../../docs/storybook/common", | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
@@ -62,3 +68,2 @@ "preview": "vite preview", | ||
"devDependencies": { | ||
"@heroicons/react": "^2.1.1", | ||
"@storybook/addon-essentials": "^7.6.14", | ||
@@ -109,3 +114,3 @@ "@storybook/addon-interactions": "^7.6.14", | ||
}, | ||
"gitHead": "00988bf0b2318917bab272a8fb5920e451f67edf" | ||
"gitHead": "fb1542aac0eb979dd16d8d4448e4380726e4e330" | ||
} |
@@ -1,4 +0,4 @@ | ||
import type { Config } from "tailwindcss"; | ||
import { type Config } from "tailwindcss"; | ||
declare const plugin: { handler: () => void; config?: Config }; | ||
export = plugin; |
22644
38