-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.58 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "tailwindcss-opentype",
"version": "1.1.0",
"description": "Tailwind CSS utility classes for advanced typographic features.",
"keywords": [
"tailwindcss",
"tailwindcss-plugin",
"opentype",
"font features",
"typography"
],
"homepage": "https://tailwindcss-opentype.netlify.app",
"repository": "stormwarning/tailwindcss-opentype",
"license": "ISC",
"author": "Jeff Nelson <[email protected]> (https://tidaltheory.io)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdx build --format cjs",
"build:docs": "NODE_ENV=production npm run build && eleventy --config=docs/.eleventy.js",
"changeset": "changeset add",
"dev": "TAILWIND_MODE=watch eleventy --config=docs/.eleventy.js --serve",
"lint": "tsdx lint",
"prepare": "npm run 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"
},
"devDependencies": {
"@11ty/eleventy": "0.12.1",
"@11ty/eleventy-navigation": "0.3.2",
"@11ty/eleventy-plugin-syntaxhighlight": "3.1.2",
"@changesets/changelog-github": "0.4.0",
"@changesets/cli": "2.17.0",
"@fec/eleventy-plugin-remark": "2.2.1",
"@navith/tailwindcss-plugin-author-types": "1.8.1-0.1",
"@tailwindcss/typography": "0.5.2",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"@zazen/eslint-config": "2.3.0",
"autoprefixer": "10.3.4",
"dedent": "0.7.0",
"eslint": "7.32.0",
"eslint-config-standard-with-typescript": "20.0.0",
"husky": "4.3.8",
"import-sort-style-python": "1.0.2",
"jest-diff": "25.5.0",
"lint-staged": "11.1.1",
"postcss": "8.3.6",
"postcss-cli": "8.3.1",
"prettier": "2.4.1",
"prettier-plugin-import-sort": "0.0.7",
"prettier-plugin-packagejson": "2.2.11",
"prismjs": "1.24.0",
"rehype-parse": "7.0.1",
"remark-autolink-headings": "6.1.0",
"remark-directive": "1.0.1",
"remark-slug": "6.1.0",
"tailwindcss": "3.0.23",
"tsdx": "0.14.1",
"tslib": "2.3.0",
"typescript": "4.4.3",
"unified": "9.2.1"
},
"peerDependencies": {
"tailwindcss": ">= 3"
},
"engines": {
"node": ">=12"
},
"importSort": {
".js,.ts": {
"parser": "babylon",
"style": "python"
}
}
}