* docs: migrate ui docs to docs universe * created yarn workspace * added eslint and tsconfig configurations * fix eslint configurations * fixed eslint configurations * shared tailwind configurations * added shared ui package * added more shared components * migrating more components * made details components shared * move InlineCode component * moved InputText * moved Loading component * Moved Modal component * moved Select components * Moved Tooltip component * moved Search components * moved ColorMode provider * Moved Notification components and providers * used icons package * use UI colors in api-reference * moved Navbar component * used Navbar and Search in UI docs * added Feedback to UI docs * general enhancements * fix color mode * added copy colors file from ui-preset * added features and enhancements to UI docs * move Sidebar component and provider * general fixes and preparations for deployment * update docusaurus version * adjusted versions * fix output directory * remove rootDirectory property * fix yarn.lock * moved code component * added vale for all docs MD and MDX * fix tests * fix vale error * fix deployment errors * change ignore commands * add output directory * fix docs test * general fixes * content fixes * fix announcement script * added changeset * fix vale checks * added nofilter option * fix vale error
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"name": "docs-ui",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "./dist/cjs/index.js",
|
|
"types": "./dist/cjs/index.d.ts",
|
|
"module": "./dist/esm/index.js",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.ts",
|
|
"default": "./dist/cjs/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
}
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
|
|
"build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
|
|
"build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
|
|
"clean": "rimraf dist",
|
|
"dev": "yarn build:js:cjs && yarn build:js:esm"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^17.0.1",
|
|
"@types/react-dom": "^17.0.1",
|
|
"clsx": "^2.0.0",
|
|
"cpy-cli": "^5.0.0",
|
|
"eslint-config-docs": "*",
|
|
"next": "latest",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"rimraf": "^5.0.1",
|
|
"tailwind": "*",
|
|
"tailwindcss": "^3.3.3",
|
|
"tsc-alias": "^1.8.7",
|
|
"tsup": "^5.10.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": ">=17",
|
|
"@types/react-dom": ">=17",
|
|
"next": "*",
|
|
"react": ">=17",
|
|
"react-dom": ">=17"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/icons": "^1.0.0",
|
|
"@medusajs/ui": "^1.0.0",
|
|
"@octokit/request": "^8.1.1",
|
|
"@segment/analytics-next": "^1.55.0",
|
|
"algoliasearch": "^4.20.0",
|
|
"prism-react-renderer": "^2.0.6",
|
|
"react-instantsearch": "^7.0.3",
|
|
"react-tooltip": "^5.21.3",
|
|
"react-transition-group": "^4.4.5",
|
|
"react-uuid": "^2.0.0"
|
|
}
|
|
}
|