-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
67
68
69
70
{
"name": "fexios",
"version": "1.7.1",
"description": "Fetch based HTTP client with similar API to axios for browser and Node.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"type": "module",
"files": [
"dist",
"lib"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && vite build",
"clean": "rimraf dist lib",
"test": "vitest run ./test",
"review": "vite preview --outDir ./.test_reports"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"fetch",
"ajax",
"http",
"promise",
"hookable",
"node",
"browser",
"axios"
],
"author": "dragon-fish <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dragon-fish/fexios.git"
},
"bugs": {
"url": "https://github.com/dragon-fish/fexios/issues"
},
"homepage": "https://github.com/dragon-fish/fexios#readme",
"engines": {
"node": "^16.15.0 || >=18.0.0"
},
"devDependencies": {
"@types/node": "^20.14.15",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@web-std/file": "^3.0.3",
"dotenv": "^16.4.5",
"rimraf": "^6.0.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.2",
"vitest": "^2.0.5"
},
"dependencies": {
"tslib": "^2.6.3"
}
}