You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
{
|
|
"name": "@tih/ui",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"sideEffects": false,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist",
|
|
"./styles.css": "./dist/styles.css"
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.tsx --format esm,cjs --dts --external react && tailwindcss -i ./src/styles.css -o ./dist/styles.css",
|
|
"dev": "concurrently \"tsup src/index.tsx --format esm,cjs --dts --external react --watch\" \"tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch\"",
|
|
"clean": "rm -rf dist",
|
|
"tsc": "tsc",
|
|
"lint": "eslint src/**/*.ts* --fix"
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^1.7.3",
|
|
"@heroicons/react": "2.0.11",
|
|
"clsx": "^1.2.1",
|
|
"next": "^12.3.1",
|
|
"tailwindcss": "^3.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@tih/tailwind-config": "workspace:0.0.0",
|
|
"@tih/tsconfig": "workspace:0.0.0",
|
|
"@types/react": "^18.0.21",
|
|
"@types/react-dom": "^18.0.6",
|
|
"autoprefixer": "^10.4.12",
|
|
"concurrently": "^7.4.0",
|
|
"eslint": "^8.24.0",
|
|
"eslint-config-tih": "workspace:0.0.0",
|
|
"prettier-plugin-tailwindcss": "^0.1.13",
|
|
"react": "^18.2.0",
|
|
"tsup": "^6.2.3",
|
|
"typescript": "^4.8.3"
|
|
}
|
|
}
|