-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "stretto",
"version": "1.0.26",
"description": "The lightweight and The Ultimate high-performance HTTP library for WEB.",
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"cp": "cp dist/index.umd.js docs/",
"build": "vite build && npm run cp",
"dev": "vite build --minify false && npm run cp",
"clean": "rm -rf dist",
"test": "jest tests/index.test.ts",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"jsr:publish": "npx jsr publish --allow-dirty"
},
"devDependencies": {
"@jest/globals": "^30.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"dts-bundle-generator": "^9.5.1",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4"
},
"files": [
"dist"
],
"keywords": [
"fetch api",
"fetch stream",
"streaming",
"sse",
"HTTP request",
"Server-Sent Events",
"json streaming",
"Lightweight HTTP"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wutility/stretto.git"
},
"bugs": {
"url": "https://github.com/wutility/stretto.git/issues"
},
"homepage": "https://github.com/wutility/stretto.git#readme",
"license": "MIT"
}