forked from unjs/ofetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.53 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ohmyfetch",
"version": "0.4.5",
"description": "oh-my-fetch",
"repository": "unjs/ohmyfetch",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"node": {
"import": "./dist/node.mjs",
"require": "./cjs/node.cjs"
},
"default": {
"import": "./dist/index.mjs",
"require": "./cjs/index.cjs"
}
},
"./node": {
"import": "./dist/node.mjs",
"require": "./cjs/node.cjs"
},
"./undici": {
"import": "./dist/undici.mjs",
"require": "./cjs/undici.cjs"
}
},
"main": "./cjs/node.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"cjs"
],
"scripts": {
"build": "unbuild",
"prepack": "yarn build",
"lint": "eslint --ext .ts .",
"play": "jiti playground/index.ts",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn build && mocha ./test/*.test.*"
},
"dependencies": {
"destr": "^1.1.0",
"node-fetch": "^3.0.0",
"ufo": "^0.7.9",
"undici": "^4.9.5"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@types/flat": "latest",
"@types/mocha": "^9.0.0",
"@types/node": "latest",
"@types/node-fetch": "^3.0.3",
"chai": "^4.3.4",
"eslint": "^7",
"h3": "latest",
"jiti": "latest",
"listhen": "latest",
"mocha": "^9.1.3",
"standard-version": "latest",
"typescript": "latest",
"unbuild": "latest"
}
}