-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.9 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
{
"name": "tailwindcss-capsize",
"version": "3.0.0",
"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)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build --format cjs",
"changeset": "changeset add",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release": "npm run build && changeset publish",
"start": "tsdx watch",
"test": "tsdx test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"package.json": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@capsizecss/core": "^3.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "2.19.x",
"@navith/tailwindcss-plugin-author-types": "1.8.1-0.1",
"@typescript-eslint/eslint-plugin": "4.31.x",
"@typescript-eslint/parser": "4.31.x",
"@zazen/eslint-config": "2.3.x",
"eslint": "7.32.x",
"eslint-config-standard-with-typescript": "20.0.0",
"husky": "4.3.x",
"import-sort-style-python": "1.0.x",
"jest-diff": "27.2.x",
"lint-staged": "10.5.x",
"prettier": "2.2.x",
"prettier-plugin-import-sort": "0.0.6",
"prettier-plugin-packagejson": "2.2.x",
"tailwindcss": "2.2.19",
"tsdx": "0.14.1",
"tslib": "2.3.x",
"typescript": "4.2.x"
},
"peerDependencies": {
"tailwindcss": ">= 1.5"
},
"engines": {
"node": ">=10"
},
"importSort": {
".js,.ts": {
"parser": "babylon",
"style": "python"
}
}
}