-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 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
59
60
61
62
63
64
65
66
67
68
{
"name": "tailwindcss-capsize",
"version": "3.0.5",
"description": "TailwindCSS leading-trim utility classes.",
"keywords": [
"tailwindcss",
"tailwindcss-plugin",
"capsize",
"leading-trim",
"typography",
"whitespace"
],
"repository": "stormwarning/tailwindcss-capsize",
"license": "ISC",
"author": "Jeff Nelson (https://tidaltheory.io)",
"contributors": [
"Jesse McLean (https://builtbyfield.com)"
],
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"changeset": "changeset add",
"release": "npm run build && changeset publish",
"test": "vitest run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"prettier": "@zazen/prettier-config",
"dependencies": {
"@capsizecss/core": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "2.27.1",
"@zazen/changesets-changelog": "2.0.3",
"@zazen/eslint-config": "6.8.0",
"@zazen/prettier-config": "1.0.0",
"eslint": "8.56.0",
"husky": "4.3.x",
"jest-diff": "29.7.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"vitest": "1.5.0"
},
"peerDependencies": {
"tailwindcss": ">= 1.5"
},
"engines": {
"node": ">=10"
}
}