-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
137 lines (137 loc) · 4.36 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "webcomponents.guide",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/keithamus/webcomponents.guide#readme",
"bugs": {
"url": "https://github.com/keithamus/webcomponents.guide/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keithamus/webcomponents.guide.git"
},
"license": "CC-BY-SA-4.0",
"author": "",
"main": ".eleventy.js",
"scripts": {
"build": "eleventy",
"start": "eleventy --serve",
"test": "npm run check",
"remark": "remark . --quiet --frail",
"lint": "stylelint css/*.css",
"check": "prettier --check . && npm run remark",
"format": "prettier --write ."
},
"stylelint": {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-use-logical",
"stylelint-media-use-custom-media",
"stylelint-value-no-unknown-custom-properties",
"stylelint-use-nesting"
],
"rules": {
"csstools/use-logical": "always",
"csstools/use-nesting": "always",
"csstools/media-use-custom-media": [
"always",
{
"importFrom": "./node_modules/open-props/media.min.css"
}
],
"csstools/value-no-unknown-custom-properties": [
true,
{
"importFrom": [
"./css/global.css",
"./node_modules/open-props/open-props.min.css",
"./node_modules/open-props/normalize.min.css"
]
}
]
}
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": false,
"proseWrap": "always"
},
"dependencies": {
"@codemirror/autocomplete": "^6.4.0",
"@codemirror/commands": "^6.1.3",
"@codemirror/lang-css": "^6.0.1",
"@codemirror/lang-html": "^6.4.1",
"@codemirror/lang-javascript": "^6.1.2",
"@codemirror/language": "^6.4.0",
"@codemirror/lint": "^6.1.0",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.7.3",
"codemirror": "^6.0.1",
"container-query-polyfill": "^1.0.2"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@github/relative-time-element": "^4.1.5",
"@jamshop/eleventy-plugin-esbuild": "WebComponentsGuide/eleventy-plugin-esbuild",
"@oddbird/popover-polyfill": "^0.5.0",
"@ungap/custom-elements": "^1.1.1",
"autoprefixer": "10.4.20",
"cheerio": "1.0.0",
"construct-style-sheets-polyfill": "^3.1.0",
"cssnano": "^6.0.1",
"dedent": "^0.7.0",
"dictionary-en": "^3.2.0",
"eleventy-postcss-extension": "1.0.0",
"eslint-plugin-custom-elements": "^0.0.8",
"glob": "^10.2.7",
"markdown-it": "^13.0.1",
"markdown-it-github-headings": "^2.0.1",
"markdownlint-cli": "^0.42.0",
"node-fetch": "^3.3.0",
"open-props": "^1.5.5",
"postcss": "^8.4.20",
"postcss-combine-duplicated-selectors": "10.0.3",
"postcss-import": "15.1.0",
"postcss-jit-props": "1.0.14",
"postcss-preset-env": "^8.0.0",
"prettier": "^2.8.1",
"remark-cli": "^11.0.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-lint-no-duplicate-headings": "^3.1.1",
"remark-lint-no-duplicate-headings-in-section": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.2",
"remark-preset-prettier": "^2.0.1",
"remark-retext": "^5.0.1",
"remark-validate-links": "^12.1.0",
"retext-contractions": "^5.2.0",
"retext-diacritics": "^4.2.0",
"retext-english": "^4.1.0",
"retext-equality": "^6.6.0",
"retext-indefinite-article": "^4.2.0",
"retext-intensify": "^6.2.0",
"retext-passive": "^4.2.0",
"retext-profanities": "^7.2.2",
"retext-quotes": "^5.2.0",
"retext-readability": "^7.2.0",
"retext-redundant-acronyms": "^4.3.0",
"retext-repeated-words": "^4.2.0",
"retext-sentence-spacing": "^5.2.0",
"retext-simplify": "^7.2.0",
"retext-spell": "^5.3.0",
"string-to-template-literal": "^2.0.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-media-use-custom-media": "^2.0.1",
"stylelint-use-logical": "^2.0.0",
"stylelint-use-nesting": "^4.0.0",
"stylelint-value-no-unknown-custom-properties": "^4.0.0"
}
}