-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.58 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.58 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@team-splab/fetchios",
"version": "1.0.0",
"description": "A modern, type-safe fetch library with Axios-like API for JavaScript/TypeScript applications",
"keywords": [
"fetch",
"axios",
"http",
"api",
"client",
"typescript",
"javascript",
"request",
"universal",
"nextjs",
"browser",
"node"
],
"homepage": "https://github.com/team-splab/fetchios",
"repository": {
"type": "git",
"url": "https://github.com/team-splab/fetchios.git"
},
"bugs": {
"url": "https://github.com/team-splab/fetchios/issues"
},
"license": "MIT",
"author": {
"name": "Team Splab",
"email": "dev@splab.dev"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.mjs",
"build:watch": "rollup -c rollup.config.mjs --watch",
"dev": "vite",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^16.2.0",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.35.0",
"vite": "^5.1.0",
"vitest": "^1.2.2"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}