-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 942 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 942 Bytes
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
{
"name": "@liquidrazor/rtsk",
"version": "0.1.1",
"description": "Client-side streaming helpers for NDJSON, SSE, and WebSockets with a unified TypeScript API.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"docs",
"README.md"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"api:extract": "api-extractor run --local",
"api:docs": "api-documenter markdown -i temp -o docs/api",
"docs": "npm run build && npm run api:extract && npm run api:docs"
},
"repository": {
"type": "git",
"url": "https://github.com/LiquidRazor/rtsk.git"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.28.2",
"@microsoft/api-extractor": "^7.55.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}