-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.94 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.94 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
{
"name": "sync-request-curl",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nktnet1/sync-request-curl"
},
"version": "4.0.0",
"files": [
"dist"
],
"scripts": {
"start": "tsx tests/app/server",
"dev": "tsx watch --include ./tests/app ./tests/app/server.ts",
"test": "vitest run",
"tc": "vitest run --coverage",
"lint": "eslint './**/*.ts'",
"lint:fix": "eslint --fix './**/*.ts'",
"tsc": "tsc --noEmit",
"build": "tsdown",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"sync",
"sync-request",
"synchronous",
"request",
"fast",
"quick",
"speed",
"performance",
"http",
"https",
"curl",
"libcurl",
"node-libcurl",
"comp1531"
],
"author": "Khiet Tam Nguyen",
"license": "MIT",
"description": "Fast way to send synchronous web requests in NodeJS. API is a subset of sync-request. Leverages node-libcurl for high performance. Cannot be used in a browser.",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@hono/node-server": "^1.19.14",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitest/coverage-v8": "4.1.4",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"hono": "^4.12.14",
"sync-dev-server": "^1.1.2",
"tsdown": "^0.21.9",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"node-libcurl": "^5.0.2"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"engines": {
"node": ">=22"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./errors": {
"import": "./dist/errors.mjs",
"require": "./dist/errors.cjs"
},
"./package.json": "./package.json"
}
}