-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "tailwindcss-multi",
"version": "0.4.6",
"description": "Grouped utility support for Tailwind CSS",
"type": "module",
"source": "index.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "dist/types/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "microbundle",
"dev": "microbundle watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandonmcconnell/tailwindcss-multi.git"
},
"keywords": [
"css",
"utility-classes",
"grouping",
"plugin",
"plugins",
"tailwind",
"tailwindcss"
],
"author": "Brandon McConnell",
"license": "MIT",
"bugs": {
"url": "https://github.com/brandonmcconnell/tailwindcss-multi/issues"
},
"homepage": "https://github.com/brandonmcconnell/tailwindcss-multi#readme",
"dependencies": {
"@types/node": "^20.4.1"
},
"devDependencies": {
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.1.6"
}
}