-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.4 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
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
{
"name": "@steelwindshellahillz/flyapi",
"description": "Fly with your API right now!",
"keywords": [
"async",
"api",
"fetch",
"flyapi",
"ofetch",
"proxy",
"typescript"
],
"author": {
"name": "Kirill Shurov",
"email": "kirillsurov0@gmail.com",
"url": "https://github.com/steelWinds"
},
"bugs": {
"url": "https://github.com/steelWinds/flyapi/issues",
"email": "kirillsurov0@gmail.com"
},
"homepage": "https://flyapi.vercel.app/",
"license": "MPL-2.0",
"repository": "github:steelWinds/flyapi",
"private": false,
"version": "1.1.3",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"types": "./dist/main.d.ts",
"scripts": {
"build": "rollup --config && tsc-alias",
"dev": "husky && rollup --watch --config",
"test": "vitest run --coverage",
"lint": "eslint ./src/**/*.{js,ts} --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"./src/**/*.{js,ts}": "eslint --fix"
},
"overrides": {
"@typescript-eslint/parser": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^7.3.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.13.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@faker-js/faker": "^8.4.1",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@vitest/coverage-v8": "^1.4.0",
"browserslist": "^4.23.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"dependencies": {
"ofetch": "^1.3.3",
"ufo": "^1.4.0"
},
"volta": {
"node": "20.11.1"
},
"engines": {
"node": ">=18.19.1"
}
}