-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "@michaelallenwarner/tailwind-grid-inner",
"version": "1.0.3",
"description": "A Tailwind CSS plugin for making grids with inner borders but no outer borders.",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"lint": "eslint ./src/ --fix",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelAllenWarner/tailwind-grid-inner.git"
},
"license": "MIT",
"author": {
"name": "Michael Allen Warner",
"email": "[email protected]",
"url": "https://github.com/MichaelAllenWarner"
},
"engines": {
"node": ">=12.2"
},
"keywords": [
"tailwindcss",
"tailwind css",
"tailwind",
"css",
"css grid",
"grid",
"border",
"borders",
"inner borders",
"internal borders",
"inside borders",
"inner",
"internal",
"inside"
],
"bugs": {
"url": "https://github.com/MichaelAllenWarner/tailwind-grid-inner/issues"
},
"homepage": "https://github.com/MichaelAllenWarner/tailwind-grid-inner#readme",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"specificity": "^1.0.0"
},
"peerDependencies": {
"tailwindcss": ">=2.2"
}
}