-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 870 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
{
"name": "tailwindcss-aria-plugin",
"version": "0.1.6",
"author": "kayac-chang <[email protected]>",
"description": "tailwindcss and aria attributes variants",
"repository": "https://github.com/kayac-chang/tailwindcss-aria-plugin.git",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "esbuild index.ts --platform=node --format=cjs --outfile=index.js"
},
"exports": {
"default": "./index.js"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/tailwindcss": "^3.0.11",
"esbuild": "^0.14.48",
"esbuild-jest": "^0.5.0",
"jest": "^28.1.2",
"jest-diff": "^28.1.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.4",
"typescript": "^4.7.4"
},
"peerDependencies": {
"tailwindcss": "^3.1.4"
}
}