forked from unjs/ofetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "ohmyfetch",
"version": "0.2.0",
"description": "oh-my-fetch",
"repository": "unjs/ohmyfetch",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./node": {
"import": "./dist/node.mjs",
"require": "./dist/node.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"node.*",
"index.*"
],
"scripts": {
"build": "siroc build",
"lint": "eslint --ext .ts .",
"play": "jiti playground/index.ts",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"destr": "^1.1.0",
"node-fetch": "^2.6.1",
"ufo": "^0.6.10"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@types/flat": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/node-fetch": "latest",
"eslint": "latest",
"h3": "latest",
"jest": "latest",
"jiti": "latest",
"listhen": "latest",
"siroc": "latest",
"standard-version": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}