-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 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
{
"name": "@adityadev13/solvix",
"version": "1.0.0-beta.2",
"description": "Solvix — A universal, high-performance HTTP engine for modern JavaScript runtimes.",
"keywords": [
"http",
"fetch",
"request",
"client",
"typescript",
"node",
"browser",
"bun",
"deno",
"edge",
"universal",
"network",
"axios-alternative"
],
"homepage": "https://solvix-client.github.io/solvix-docs/",
"repository": {
"type": "git",
"url": "git+https://github.com/Solvix-Client/solvix.git"
},
"bugs": {
"url": "https://github.com/Solvix-Client/solvix/issues"
},
"license": "MIT",
"author": "Aditya Prakash",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"bench": "tsx bench/tokenRefreshStampede.bench.ts",
"changeset": "changeset",
"release": "changeset publish",
"size": "gzip -c dist/index.js | wc -c",
"prepublishOnly": "npm run build && npm run typecheck",
"release:beta": "npm version prerelease --preid=beta",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"axios": "^1.13.5",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^20.6.3",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"tinybench": "^6.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}