-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2 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
{
"name": "@levdwire/tailwind",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"author": "Srylius <[email protected]> (https://srylius.com)",
"repository": "levdwire/tailwind",
"bugs": "https://github.com/levdwire/tailwind/issues",
"homepage": "https://github.com/levdwire/tailwind",
"keywords": [
"css",
"html",
"lightweight",
"components",
"typescript",
"utilities",
"eslint",
"prettier",
"tailwind",
"tailwindcss",
"levdwire",
"levdwire-ui"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./preset": {
"types": "./dist/preset.d.ts",
"import": "./dist/preset.mjs",
"require": "./dist/preset.cjs"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.mjs",
"require": "./dist/config.cjs"
},
"./colors": {
"types": "./dist/colors.d.ts",
"import": "./dist/colors.mjs",
"require": "./dist/colors.cjs"
},
"./theme": {
"types": "./dist/theme.d.ts",
"import": "./dist/theme.mjs",
"require": "./dist/theme.cjs"
},
"./plugins": {
"types": "./dist/plugins/index.d.ts",
"import": "./dist/plugins/index.mjs",
"require": "./dist/plugins/index.cjs"
}
},
"dependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.13",
"defu": "^6.1.4",
"tailwindcss": "^3.4.6"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"jsdom": "^24.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"unbuild": "^2.0.0"
},
"scripts": {},
"files": [
"dist"
]
}