-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "@woogie0303/easyfetch",
"version": "0.1.4",
"description": "",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
}
}
},
"scripts": {
"prepare": "husky && husky install",
"type-check": "tsc -p tsconfig.json --noEmit",
"lint-staged": "lint-staged",
"eslint": "eslint src/**/*",
"lint": "pnpm run eslint & pnpm run type-check",
"test": "vitest",
"test:run": "vitest run",
"build": "pnpm run clean && rollup -c",
"clean": "pnpm rimraf build/**/*",
"prepublishOnly": "pnpm run test:run && pnpm run build"
},
"keywords": [
"fetch",
"EasyFetch",
"Nextjs",
"interceptor",
"headers",
"axios"
],
"repository": {
"type": "git",
"url": "https://github.com/woogie0303/easyFetch"
},
"author": "Dong Wook Kang",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "8.57.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
}
}