-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 856 Bytes
/
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
{
"name": "tailwindcss-view-transitions",
"version": "0.1.1",
"description": "TailwindCSS plugin for customizing styles for the View Transitions Web API",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" c8 jest",
"format": "prettier --write src"
},
"license": "MIT",
"repository": "https://github.com/ekafyi/tailwindcss-view-transitions",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"c8": "^8.0.1",
"jest": "^29.6.4",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest/customMatchers.js"
]
},
"c8": {
"exclude": [
"jest/customMatchers.js",
"**/*.test.js"
]
},
"keywords": [
"tailwindcss"
]
}