-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.68 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.68 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
{
"name": "requestify.js",
"description": "🚀 Лёгкий и расширяемый HTTP-клиент с поддержкой middleware для JavaScript и TypeScript",
"version": "2.2.1",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ssssed/requestify.js.git"
},
"bugs": {
"url": "https://github.com/ssssed/requestify.js/issues"
},
"homepage": "https://ssssed.github.io/requestify.js/installation.html",
"keywords": [
"http",
"axios",
"requestify",
"library",
"client",
"request",
"ajax",
"promise",
"web",
"api",
"middleware",
"typescript",
"fetch",
"http-client",
"rest-api"
],
"author": {
"name": "Igor Koneshov",
"email": "igorkoneshov@mail.ru",
"url": "https://github.com/ssssed"
},
"license": "MIT",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "vite",
"build:bundle": "vite build",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:bundle && npm run build:types",
"preview": "vite preview",
"test": "jest",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"docs:build": "vitepress build docs",
"docs:deploy": "gh-pages -d docs/.vitepress/dist"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"gh-pages": "^6.3.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitepress": "^1.6.3"
}
}