-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 742 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 742 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": "@temelj/request",
"version": "0.12.0",
"description": "HTTP request utilities.",
"license": "MIT",
"repository": {
"url": "https://github.com/tinrab/temelj"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/mod.mjs",
"types": "./dist/mod.d.mts",
"exports": {
".": {
"types": "./dist/mod.d.mts",
"import": "./dist/mod.mjs"
}
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "shx rm -rf dist"
},
"dependencies": {
"tough-cookie": "^6.0.1"
},
"devDependencies": {
"@types/node": "25.9.2",
"shx": "^0.4.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}