-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.12 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
55
{
"name": "streaming-markdown",
"version": "0.0.17",
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
"description": "Streaming Markdown parser, à la ChatGPT",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thetarnav/streaming-markdown.git"
},
"homepage": "https://thetarnav.github.io/streaming-markdown",
"private": false,
"sideEffects": false,
"type": "module",
"files": [
"./smd.js",
"./smd.d.ts",
"./smd.d.ts.map",
"./smd.min.js"
],
"browser": "./smd.min.js",
"module": "./smd.js",
"types": "./smd.d.ts",
"exports": {
"import": {
"types": "./smd.d.ts",
"default": "./smd.js"
}
},
"scripts": {
"dev": "node ./dev.js",
"test": "node --test",
"typecheck": "tsc --noEmit",
"build": "node ./build.js",
"prepublishOnly": "node ./build.js",
"postpublish": "rm smd.d.* smd.min.js"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/ws": "^8.5.12",
"esbuild": "^0.24.0",
"typescript": "^5.6.3",
"ws": "^8.18.0"
},
"keywords": [
"markdown",
"parser",
"html",
"ai"
],
"packageManager": "npm@10.9.0",
"engines": {
"node": ">=20"
}
}