-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 959 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
{
"name": "@claas.dev/material-tailwind",
"description": "Use the Material design system with Tailwind CSS.",
"homepage": "https://github.com/santalaas/material-tailwind",
"license": "Apache-2.0",
"author": {
"name": "claas",
"email": "[email protected]",
"url": "https://claas.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/SantaClaas/material-tailwind.git"
},
"private": false,
"version": "0.0.0",
"type": "module",
"exports": {
".": "./index.js"
},
"scripts": {
"build:bundle": "node ./build.js",
"test": "vitest",
"create-definitions": "tsc"
},
"dependencies": {
"@material/material-color-utilities": "./@material/material-color-utilities",
"tailwindcss": "^3.4.1"
},
"bundledDependencies": [
"@material/material-color-utilities"
],
"devDependencies": {
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"types": "./index.d.ts"
}