themed-markdown 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,171 @@
1
+ {
2
+ "name": "themed-markdown",
3
+ "version": "0.1.0",
4
+ "description": "Industry-themed markdown renderer with presentation capabilities",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js"
12
+ },
13
+ "./industryMarkdown": "./dist/industryMarkdown/index.js",
14
+ "./industryTheme": "./dist/industryTheme/index.js"
15
+ },
16
+ "scripts": {
17
+ "build": "bun run clean && bun run build:lib",
18
+ "build:lib": "bun build ./industryMarkdown/index.ts --outdir ./dist --format esm --target browser",
19
+ "dev": "bun run build --watch",
20
+ "test": "bun test",
21
+ "test:watch": "bun test --watch",
22
+ "typecheck": "tsc --noEmit",
23
+ "lint": "eslint . --ext .ts,.tsx",
24
+ "lint:fix": "eslint . --ext .ts,.tsx --fix",
25
+ "format": "prettier --write .",
26
+ "format:check": "prettier --check .",
27
+ "clean": "rm -rf dist coverage"
28
+ },
29
+ "keywords": [
30
+ "markdown",
31
+ "presentation",
32
+ "slides",
33
+ "theme",
34
+ "industry"
35
+ ],
36
+ "author": "PrincipleMD Team",
37
+ "license": "MIT",
38
+ "dependencies": {
39
+ "@modelcontextprotocol/sdk": "^1.0.4",
40
+ "@types/d3-hierarchy": "^3.1.7",
41
+ "@types/flexsearch": "^0.7.6",
42
+ "a24z-memory": "^0.5.31",
43
+ "d3-hierarchy": "^3.1.2",
44
+ "flexsearch": "^0.8.205",
45
+ "ignore": "^7.0.5",
46
+ "js-toml": "^1.0.2",
47
+ "mermaid": "^11.9.0",
48
+ "picomatch": "^4.0.3",
49
+ "pip-requirements-js": "^0.2.1",
50
+ "react-resizable-panels": "^2.0.0",
51
+ "typescript": "^5.0.4",
52
+ "uuid": "^10.0.0",
53
+ "ws": "^8.16.0",
54
+ "yaml": "^2.8.1"
55
+ },
56
+ "peerDependencies": {
57
+ "hast-util-sanitize": ">=4.0.0",
58
+ "highlight.js": ">=11.0.0",
59
+ "lucide-react": ">=0.263.0",
60
+ "react": ">=19.0.0",
61
+ "react-dom": ">=19.0.0",
62
+ "react-markdown": ">=8.0.0",
63
+ "react-zoom-pan-pinch": ">=3.0.0",
64
+ "rehype-highlight": ">=6.0.0",
65
+ "rehype-raw": ">=6.0.0",
66
+ "rehype-sanitize": ">=5.0.0",
67
+ "rehype-slug": ">=5.0.0",
68
+ "remark-gfm": ">=3.0.0"
69
+ },
70
+ "peerDependenciesMeta": {
71
+ "react": {
72
+ "optional": true
73
+ },
74
+ "react-dom": {
75
+ "optional": true
76
+ },
77
+ "react-markdown": {
78
+ "optional": true
79
+ },
80
+ "react-zoom-pan-pinch": {
81
+ "optional": true
82
+ },
83
+ "remark-gfm": {
84
+ "optional": true
85
+ },
86
+ "rehype-raw": {
87
+ "optional": true
88
+ },
89
+ "rehype-highlight": {
90
+ "optional": true
91
+ },
92
+ "rehype-sanitize": {
93
+ "optional": true
94
+ },
95
+ "rehype-slug": {
96
+ "optional": true
97
+ },
98
+ "hast-util-sanitize": {
99
+ "optional": true
100
+ },
101
+ "lucide-react": {
102
+ "optional": true
103
+ },
104
+ "highlight.js": {
105
+ "optional": true
106
+ }
107
+ },
108
+ "devDependencies": {
109
+ "@babel/preset-env": "^7.28.3",
110
+ "@eslint/js": "^9.32.0",
111
+ "@storybook/addon-docs": "^9.1.3",
112
+ "@storybook/addon-onboarding": "^9.1.3",
113
+ "@storybook/addon-webpack5-compiler-swc": "^3.0.0",
114
+ "@storybook/react-webpack5": "^9.1.3",
115
+ "@testing-library/react": "^16.3.0",
116
+ "@types/bun": "latest",
117
+ "@types/jest": "^29.5.12",
118
+ "@types/node": "^22.15.26",
119
+ "@types/picomatch": "^4.0.2",
120
+ "@types/react": "^19.1.12",
121
+ "@types/react-dom": "^19.1.8",
122
+ "@types/uuid": "^10.0.0",
123
+ "@types/ws": "^8.5.10",
124
+ "@typescript-eslint/eslint-plugin": "^8.38.0",
125
+ "@typescript-eslint/parser": "^8.38.0",
126
+ "esbuild": "^0.25.8",
127
+ "eslint": "^9.32.0",
128
+ "eslint-config-prettier": "^10.1.8",
129
+ "eslint-import-resolver-typescript": "^4.4.4",
130
+ "eslint-plugin-import": "^2.32.0",
131
+ "eslint-plugin-storybook": "^9.1.3",
132
+ "hast-util-sanitize": "^5.0.2",
133
+ "highlight.js": "^11.11.1",
134
+ "husky": "^9.1.7",
135
+ "jest": "^29.7.0",
136
+ "jest-environment-jsdom": "^29.7.0",
137
+ "jsdom": "^26.1.0",
138
+ "lint-staged": "^16.1.5",
139
+ "lucide-react": "^0.542.0",
140
+ "node-fetch": "^3.3.2",
141
+ "prettier": "^3.6.2",
142
+ "react": "^19.1.1",
143
+ "react-dom": "^19.1.1",
144
+ "react-markdown": "^10.1.0",
145
+ "react-zoom-pan-pinch": "^3.7.0",
146
+ "rehype-highlight": "^7.0.2",
147
+ "rehype-raw": "^7.0.0",
148
+ "rehype-sanitize": "^6.0.0",
149
+ "rehype-slug": "^6.0.0",
150
+ "remark-gfm": "^4.0.1",
151
+ "storybook": "^9.1.3",
152
+ "ts-jest": "^29.1.2",
153
+ "ts-loader": "^9.5.2",
154
+ "tsx": "^4.20.3",
155
+ "typescript": "^5.0.4",
156
+ "typescript-eslint": "^8.38.0",
157
+ "webpack": "^5.98.0",
158
+ "webpack-cli": "^6.0.1",
159
+ "zod": "^3.25.76"
160
+ },
161
+ "files": [
162
+ "dist",
163
+ "README.md",
164
+ "LICENSE"
165
+ ],
166
+ "repository": {
167
+ "type": "git",
168
+ "url": "git+https://github.com/a24z-ai/themed-markdown.git"
169
+ },
170
+ "homepage": "https://a24z.ai"
171
+ }