-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.18 KB
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
{
"name": "@k11k/better-blocks-astro-renderer",
"version": "0.7.0",
"description": "Astro renderer for Strapi v5 Blocks content with full Better Blocks plugin support — colors, tables, to-do lists, media embeds, alignment, and more. Native Astro components, zero client-side JavaScript.",
"type": "module",
"types": "./index.ts",
"exports": {
".": {
"types": "./index.ts",
"default": "./index.ts"
},
"./BlocksRenderer.astro": "./src/BlocksRenderer.astro",
"./package.json": "./package.json"
},
"files": [
"src",
"index.ts",
"env.d.ts"
],
"scripts": {
"build": "astro check",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:ts": "astro check",
"prepare": "husky || true"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro,json,md,yml,yaml,css}": "prettier --write"
},
"dependencies": {
"beautiful-mermaid": "^1.1.3",
"katex": "^0.16.11"
},
"peerDependencies": {
"astro": ">=4.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/katex": "^0.16.7",
"astro": "^5.0.0",
"husky": "^9.1.7",
"linkedom": "^0.18.12",
"lint-staged": "^16.3.3",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.7.2",
"vitest": "^3.0.0"
},
"keywords": [
"strapi",
"strapi-v5",
"blocks",
"blocks-renderer",
"astro",
"renderer",
"rich-text",
"better-blocks",
"color",
"highlight",
"text-color",
"background-color",
"katex",
"latex",
"math",
"mermaid",
"diagram",
"cms",
"headless-cms"
],
"license": "MIT",
"author": "k11k-labs",
"repository": {
"type": "git",
"url": "https://github.com/k11k-labs/better-blocks-astro-renderer.git"
},
"bugs": {
"url": "https://github.com/k11k-labs/better-blocks-astro-renderer/issues"
},
"homepage": "https://github.com/k11k-labs/better-blocks-astro-renderer#readme",
"engines": {
"node": ">=20.0.0 <=24.x.x",
"npm": ">=6.0.0"
},
"packageManager": "yarn@1.22.22"
}