-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "@refactorjs/ofetch",
"version": "1.0.13",
"description": "An extension to ofetch",
"repository": {
"type": "git",
"url": "git+https://github.com/refactorjs/ofetch.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"release": "standard-version && git push --follow-tags && npm publish"
},
"dependencies": {
"cookie-es": "^1.0.0",
"defu": "^6.1.3",
"destr": "^2.0.2",
"ofetch": "^1.3.3"
},
"devDependencies": {
"@types/node": "^20",
"standard-version": "^9.5.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/refactorjs/ofetch/issues"
},
"homepage": "https://github.com/refactorjs/ofetch#readme",
"keywords": [
"fetch",
"http",
"ohmyfetch",
"ofetch"
]
}