-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "tailwind-children",
"version": "0.5.0",
"description": "Tailwind plugin which enables setting CSS rules for all children in parent",
"main": "./dist/index.js",
"module": "./src/index.mjs",
"source": "./src/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./src/index.mjs"
},
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamGoody/tailwind-children.git"
},
"keywords": [
"tailwind",
"tailwindcss",
"children",
"plugin",
"descendant"
],
"author": "Sam Goody",
"license": "AGPL-1.0-or-later",
"bugs": {
"url": "https://github.com/SamGoody/tailwind-children/issues"
},
"homepage": "https://github.com/SamGoody/tailwind-children#readme",
"devDependencies": {
"jest": "^27.5.1",
"jest-matcher-css": "^1.1.0",
"postcss": "^8.4.12"
},
"dependencies": {
"tailwindcss": "^3.0.24",
"require-esm-in-cjs": "^0.1.0"
}
}