aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/tailwind/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'tooling/tailwind/package.json')
-rw-r--r--tooling/tailwind/package.json37
1 files changed, 37 insertions, 0 deletions
diff --git a/tooling/tailwind/package.json b/tooling/tailwind/package.json
new file mode 100644
index 00000000..9ee573a5
--- /dev/null
+++ b/tooling/tailwind/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "@hoarder/tailwind-config",
+ "version": "0.1.0",
+ "private": true,
+ "type": "module",
+ "exports": {
+ "./native": "./native.ts",
+ "./web": "./web.ts"
+ },
+ "license": "MIT",
+ "scripts": {
+ "clean": "rm -rf .turbo node_modules",
+ "format": "prettier --check . --ignore-path ../../.gitignore",
+ "lint": "eslint .",
+ "typecheck": "tsc --noEmit"
+ },
+ "dependencies": {
+ "postcss": "^8.4.35",
+ "tailwindcss": "^3.4.1",
+ "tailwindcss-animate": "^1.0.7"
+ },
+ "devDependencies": {
+ "@hoarder/eslint-config": "workspace:^0.2.0",
+ "@hoarder/prettier-config": "workspace:^0.1.0",
+ "@hoarder/tsconfig": "workspace:^0.1.0",
+ "eslint": "^8.57.0",
+ "prettier": "^3.2.5",
+ "typescript": "^5.3.3"
+ },
+ "eslintConfig": {
+ "root": true,
+ "extends": [
+ "@hoarder/eslint-config/base"
+ ]
+ },
+ "prettier": "@hoarder/prettier-config"
+}