@removify/tailwind-preset 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +22 -24
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@removify/tailwind-preset",
3
3
  "type": "module",
4
- "version": "1.0.8",
5
- "packageManager": "pnpm@10.32.1",
4
+ "version": "1.0.9",
6
5
  "description": "Tailwind CSS preset for Removify",
7
6
  "keywords": [
8
7
  "tailwind"
@@ -10,7 +9,7 @@
10
9
  "sideEffects": false,
11
10
  "exports": {
12
11
  ".": {
13
- "import": "./dist/index.js",
12
+ "import": "./dist/index.mjs",
14
13
  "require": "./dist/index.cjs"
15
14
  },
16
15
  "./index.css": {
@@ -32,24 +31,6 @@
32
31
  "engines": {
33
32
  "node": ">=22"
34
33
  },
35
- "scripts": {
36
- "start": "pnpm exec tsx ./src/index.ts",
37
- "build": "rimraf dist && tsdown src/index.ts --format esm,cjs --clean --dts && pnpm generate:tailwind-v4",
38
- "generate:tailwind-v4": "tsx ./scripts/generate-tailwind-v4.ts",
39
- "update-animation:v4": "curl https://raw.githubusercontent.com/Wombosvideo/tw-animate-css/refs/heads/main/src/tw-animate.css > ./tailwind-dist/tailwindcss-animate.css",
40
- "typecheck": "tsc --noEmit",
41
- "prepack": "pnpm build",
42
- "watch": "tsdown --format esm,cjs --watch",
43
- "dev": "tsx watch ./src/index.ts",
44
- "dev:playground": "pnpm --filter playground dev",
45
- "test": "vitest",
46
- "lint": "eslint .",
47
- "lint:fix": "eslint --fix .",
48
- "husky:install": "husky",
49
- "release": "bumpp && pnpm publish --access=public",
50
- "tailwind-config-viewer": "tailwind-config-viewer -o -c tailwind.config.js",
51
- "tailwind-config-viewer:build": "pnpm build && tailwind-config-viewer export tailwind-dist -c tailwind.config.js"
52
- },
53
34
  "peerDependencies": {
54
35
  "tailwindcss": "^3.0.0 || ^4.0.0"
55
36
  },
@@ -61,7 +42,6 @@
61
42
  "@commitlint/cli": "^20.5.0",
62
43
  "@commitlint/config-conventional": "^20.5.0",
63
44
  "@removify/eslint-config": "^5.1.0",
64
- "@removify/tailwind-preset": "workspace:*",
65
45
  "@types/node": "^25.5.0",
66
46
  "bumpp": "^11.0.1",
67
47
  "eslint": "^10.0.3",
@@ -73,11 +53,29 @@
73
53
  "tsdown": "^0.21.3",
74
54
  "tsx": "^4.21.0",
75
55
  "typescript": "^5.9.3",
76
- "vitest": "^4.1.0"
56
+ "vitest": "^4.1.0",
57
+ "@removify/tailwind-preset": "1.0.9"
77
58
  },
78
59
  "lint-staged": {
79
60
  "**/*.{js,ts,vue,html}": [
80
61
  "pnpm lint:fix"
81
62
  ]
63
+ },
64
+ "scripts": {
65
+ "start": "pnpm exec tsx ./src/index.ts",
66
+ "build": "rimraf dist && tsdown src/index.ts --format esm,cjs --clean --dts && pnpm generate:tailwind-v4",
67
+ "generate:tailwind-v4": "tsx ./scripts/generate-tailwind-v4.ts",
68
+ "update-animation:v4": "curl https://raw.githubusercontent.com/Wombosvideo/tw-animate-css/refs/heads/main/src/tw-animate.css > ./tailwind-dist/tailwindcss-animate.css",
69
+ "typecheck": "tsc --noEmit",
70
+ "watch": "tsdown --format esm,cjs --watch",
71
+ "dev": "tsx watch ./src/index.ts",
72
+ "dev:playground": "pnpm --filter playground dev",
73
+ "test": "vitest",
74
+ "lint": "eslint .",
75
+ "lint:fix": "eslint --fix .",
76
+ "husky:install": "husky",
77
+ "release": "bumpp && pnpm publish --access=public",
78
+ "tailwind-config-viewer": "tailwind-config-viewer -o -c tailwind.config.js",
79
+ "tailwind-config-viewer:build": "pnpm build && tailwind-config-viewer export tailwind-dist -c tailwind.config.js"
82
80
  }
83
- }
81
+ }