-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "tailwind-animations",
"version": "1.0.1",
"description": "Tailwind CSS plugin to add animations to your website",
"style": "./src/index.css",
"exports": {
".": "./src/index.css",
"./index.css": "./src/index.css"
},
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest",
"test:ci": "vitest run",
"sync:scoped": "node ./scripts/sync-scoped-package.mjs",
"publish:official": "pnpm publish --access public --no-git-checks",
"publish:scoped": "pnpm --dir ./packages/scoped publish --access public --no-git-checks",
"deprecate:scoped": "node ./scripts/deprecate-scoped.mjs",
"publish:both": "node ./scripts/publish-both.mjs"
},
"keywords": ["tailwind", "css", "animations", "plugin"],
"author": "Miguel Ángel Durán (@midudev) & su maravillosa comunidad",
"license": "MIT",
"peerDependencies": {
"tailwindcss": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.18",
"@csstools/postcss-minify": "2.0.5",
"eslint": "9.39.2",
"neostandard": "0.12.2",
"postcss": "8.5.6",
"tailwindcss": "4.1.18",
"vitest": "4.0.16",
"@typescript-eslint/parser": "8.52.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"prettier": "3.7.4",
"prettier-config-standard": "7.0.0",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.7.2"
}
}