-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.67 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": "fetch-ax",
"version": "2.0.3",
"description": "A modern HTTP client that extends the Fetch API, providing Axios-like syntax and full compatibility with Next.js App Router.",
"scripts": {
"test": "jest",
"clean": "rm -rf ./lib",
"build": "rm -rf dist && rollup -c",
"prepack": "npm run build",
"prepare": "husky install"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Myongji-Graduate/fetch-ax.git"
},
"keywords": [
"fetch",
"axios",
"http",
"client",
"fetch-ax",
"Next.js"
],
"author": "gahyuun",
"license": "ISC",
"bugs": {
"url": "https://github.com/Myongji-Graduate/fetch-ax/issues"
},
"homepage": "https://github.com/Myongji-Graduate/fetch-ax#readme",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.13",
"cross-fetch": "^4.0.0",
"eslint": "^9.3.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"rollup": "^4.21.3",
"ts-jest": "^29.1.4",
"tslib": "^2.7.0",
"typescript": "^5.4.5"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --cache --fix",
"prettier --cache --write"
]
}
}