-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.21 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@jcamp/tailwindcss-plugin-animate",
"version": "0.2.2",
"packageManager": "^pnpm@8.1.0",
"description": "An updated animation plugin for Tailwind CSS v3",
"author": "John Campion (https://github.com/JohnCampionJr/)",
"license": "MIT",
"homepage": "https://github.com/jcamp-code/tailwindcss-plugin-animate",
"repository": {
"type": "git",
"url": "git+https://github.com/jcamp-code/tailwindcss-plugin-animate.git"
},
"bugs": {
"url": "https://github.com/jcamp-code/tailwindcss-plugin-animate/issues"
},
"keywords": [
"tailwindcss",
"animate",
"animation"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "pnpm swcify && c8 jest",
"swcify": "swc ./src --out-dir ./dist",
"build": "pnpm swcify",
"postbuild": "tsc --emitDeclarationOnly",
"dev": "pnpm swcify -- --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check --write .",
"prepare": "npx simple-git-hooks",
"release": "changelogen --release --push",
"release:major": "changelogen --release --major --push",
"pub": "pnpm build && pnpm postbuild && pnpm publish --access public"
},
"publishConfig": {
"access": "public"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest/custom-matchers.js"
],
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"moduleNameMapper": {
"^~/(.*)": "<rootDir>/$1"
}
},
"peerDependencies": {
"tailwindcss": ">=3.4.1"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@iconify/types": "^2.0.0",
"@jcamp/eslint-config": "0.8.2",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.6",
"c8": "^8.0.1",
"changelogen": "^0.5.5",
"eslint": "8.56.0",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"postcss": "^8.4.33",
"prettier": "2.8.8",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"c8": {
"exclude": [
"jest/*.js",
"**/*.test.ts"
]
}
}