-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "posthtml-component",
"version": "2.1.0",
"description": "Laravel Blade-inspired components for PostHTML with slots, attributes as props, custom tags and more.",
"license": "MIT",
"repository": "posthtml/posthtml-components",
"author": "Damir Grgic <[email protected]> (https://github.com/thewebartisan7)",
"main": "src",
"types": "src/index.d.ts",
"files": [
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vitest",
"docs": "node ./docs-src",
"test": "vitest run --coverage",
"lint": "biome lint ./src ./scripts",
"release": "npm run changelog && npx np",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m \"chore: update changelog.md\" && git push"
},
"keywords": [
"posthtml",
"posthtml-component",
"posthtml-components",
"components",
"include",
"html"
],
"dependencies": {
"lodash": "^4.17.21",
"posthtml": "^0.16.6",
"posthtml-attrs-parser": "^1.1.0",
"posthtml-expressions": "^1.11.4",
"posthtml-parser": "^0.12.0",
"posthtml-render": "^3.0.0",
"style-to-object": "^1.0.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.4",
"conventional-changelog-cli": "^5.0.0",
"highlight.js": "^11.6.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-include": "^2.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"posthtml-beautify": "^0.7.0",
"posthtml-include": "^2.0.1",
"posthtml-markdownit": "^3.1.0",
"vitest": "^2.0.4"
}
}