-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "tailwind-rounded-out",
"version": "1.0.1",
"description": "Tailwind CSS plugin for outer-rounded corners with background inheritance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"build": "tsup",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:vite --host\"",
"dev:css": "tailwindcss -i ./playground/styles/input.css -o ./playground/styles/output.css --watch",
"dev:vite": "vite playground --host",
"prepublishOnly": "npm run build"
},
"keywords": [
"tailwindcss",
"plugin",
"rounded",
"border-radius",
"outer-radius",
"css"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/simeydotme/tailwind-rounded-out.git"
},
"bugs": {
"url": "https://github.com/simeydotme/tailwind-rounded-out/issues"
},
"homepage": "https://github.com/simeydotme/tailwind-rounded-out#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"esbuild": "^0.19.5",
"jest": "^29.7.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"peerDependencies": {
"tailwindcss": "^3.3.5"
}
}