|
1 | 1 | { |
2 | 2 | "name": "@jcamp/tailwindcss-plugin-animate", |
3 | 3 | "version": "0.1.0", |
| 4 | + "packageManager": "^pnpm@8.1.0", |
4 | 5 | "description": "An updated animation plugin for Tailwind CSS v3", |
| 6 | + "author": "John Campion (https://github.com/JohnCampionJr/)", |
| 7 | + "license": "MIT", |
| 8 | + "homepage": "https://github.com/jcamp-code/tailwindcss-plugin-animate", |
| 9 | + "repository": { |
| 10 | + "type": "git", |
| 11 | + "url": "git+https://github.com/jcamp-code/tailwindcss-plugin-animate.git" |
| 12 | + }, |
| 13 | + "bugs": { |
| 14 | + "url": "https://github.com/jcamp-code/tailwindcss-plugin-animate/issues" |
| 15 | + }, |
| 16 | + "keywords": [ |
| 17 | + "tailwindcss", |
| 18 | + "animate", |
| 19 | + "animation" |
| 20 | + ], |
5 | 21 | "main": "dist/index.js", |
6 | | - "packageManager": "^pnpm@8.1.0", |
| 22 | + "files": [ |
| 23 | + "dist/*" |
| 24 | + ], |
7 | 25 | "scripts": { |
8 | | - "dev": "tsc --watch & cd ./demo && npm run-script dev", |
| 26 | + "dev": "tsc --watch & cd ./demo && pnpm run-script dev", |
9 | 27 | "build": "tsc", |
10 | | - "release": "np --no-2fa", |
| 28 | + "lint": "eslint .", |
| 29 | + "lint:fix": "eslint . --fix", |
| 30 | + "format": "prettier --check --write .", |
| 31 | + "postinstall": "npx simple-git-hooks", |
| 32 | + "release": "changelogen --release --push && pnpm publish --access public", |
11 | 33 | "test": "tsc && c8 jest" |
12 | 34 | }, |
13 | | - "license": "MIT", |
14 | | - "author": "John Campion (https://github.com/JohnCampionJr/)", |
15 | | - "repository": "https://github.com/jcamp-code/tailwindcss-plugin-animate", |
16 | 35 | "publishConfig": { |
17 | 36 | "access": "public" |
18 | 37 | }, |
19 | | - "files": [ |
20 | | - "dist/*" |
21 | | - ], |
| 38 | + "peerDependencies": { |
| 39 | + "tailwindcss": ">=3.3.0" |
| 40 | + }, |
| 41 | + "dependencies": { |
| 42 | + "lodash": "^4.17.21" |
| 43 | + }, |
22 | 44 | "devDependencies": { |
| 45 | + "@commitlint/cli": "^17.5.1", |
| 46 | + "@commitlint/config-conventional": "^17.4.4", |
| 47 | + "@iconify/types": "^2.0.0", |
| 48 | + "@jcamp/eslint-config": "0.6.1", |
23 | 49 | "@types/lodash": "^4.14.192", |
| 50 | + "@types/node": "^18.15.11", |
24 | 51 | "c8": "^7.13.0", |
| 52 | + "changelogen": "^0.5.2", |
| 53 | + "eslint": "8.37.0", |
25 | 54 | "jest": "^29.5.0", |
26 | | - "np": "^7.7.0", |
| 55 | + "lint-staged": "^13.2.0", |
27 | 56 | "postcss": "^8.4.21", |
28 | | - "prettier": "^2.8.7", |
| 57 | + "prettier": "2.8.7", |
| 58 | + "simple-git-hooks": "^2.8.1", |
29 | 59 | "tailwindcss": "^3.3.1", |
30 | 60 | "typescript": "^5.0.3" |
31 | 61 | }, |
32 | | - "peerDependencies": { |
33 | | - "tailwindcss": ">=3.3.1" |
34 | | - }, |
35 | 62 | "jest": { |
36 | 63 | "setupFilesAfterEnv": [ |
37 | 64 | "<rootDir>/jest/customMatchers.js" |
|
42 | 69 | "jest/customMatchers.js", |
43 | 70 | "**/*.test.js" |
44 | 71 | ] |
45 | | - }, |
46 | | - "keywords": [ |
47 | | - "tailwindcss", |
48 | | - "animate", |
49 | | - "animation" |
50 | | - ], |
51 | | - "dependencies": { |
52 | | - "lodash": "^4.17.21" |
53 | 72 | } |
54 | 73 | } |
0 commit comments