-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.86 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
{
"name": "markdown-to-slack-blocks",
"version": "1.6.1",
"description": "A powerful, type-safe library to convert Markdown (incl. GFM tables, code, mentions, and LLM output) into Slack Block Kit JSON — and back. Supports Slack's native data_table block with dynamic cell typing.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"format": "biome format --write",
"lint": "biome lint --write",
"prepublishOnly": "npm run clean && npm run build && npm test",
"test": "vitest --run",
"test-watch": "vitest",
"generate-fixtures": "npx tsx scripts/generate-fixtures.ts"
},
"keywords": [
"slack",
"markdown",
"block-kit",
"blockkit",
"slack-block-kit",
"slack-blocks",
"slack-api",
"slack-bot",
"slack-message",
"markdown-to-slack",
"markdown-parser",
"converter",
"rich-text",
"rich-text-block",
"data-table",
"data_table",
"table",
"mrkdwn",
"gfm",
"parser",
"chatops",
"llm",
"typescript"
],
"author": "allx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/udivankin/markdown-to-slack-blocks.git"
},
"homepage": "https://github.com/udivankin/markdown-to-slack-blocks#readme",
"bugs": {
"url": "https://github.com/udivankin/markdown-to-slack-blocks/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"mdast-util-from-markdown": "2.0.3",
"mdast-util-gfm": "3.1.0",
"mdast-util-to-string": "4.0.0",
"micromark-extension-gfm": "3.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/node": "24.10.1",
"eslint": "9.39.1",
"typescript": "5.9.3",
"vitest": "4.1.2"
}
}