-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.61 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
{
"name": "mdstream",
"version": "0.1.1",
"author": "CTJ Lewis <lewis@spellcraft.org>",
"contributors": [
"Damian Tarnawski <gthetarnav@gmail.com>"
],
"description": "Streaming markdown parser. Includes TransformStream<Uint8Array, Uint8Array> transformers and ANSI, HTML, and DOM renderers. Fork of streaming-markdown, most code by ~thetarnav.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SpellcraftAI/mdstream"
},
"homepage": "https://github.com/SpellcraftAI/mdstream",
"private": false,
"sideEffects": false,
"type": "module",
"files": [
"./dist/**/*"
],
"module": "src/index.ts",
"types": "src/index.ts",
"browser": "./dist/browser.js",
"scripts": {
"dev": "bun dev.ts",
"build-browser": "bun build src/browser.ts --bundle --minify --outdir dist --format esm --outfile browser.js",
"build-lib": "bun build src/index.ts --bundle --minify --outdir dist --format esm",
"build": "NODE_ENV=production bun build-lib && bun build-browser",
"postbuild": "bun types",
"types": "tsc -p tsconfig.types.json",
"prepublishOnly": "bun run build && bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.11.19",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.9.0",
"typescript": "^5.5.4",
"ws": "^8.16.0"
},
"keywords": [
"markdown",
"parser",
"html",
"ai"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"ansi-styles": "^6.2.1",
"supports-color": "^9.4.0"
}
}