-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "ts-axios-wrapper",
"version": "1.1.5",
"main": "./dist/axios.wrapper.js",
"types": "./dist/axios.wrapper.d.ts",
"exports": {
".": {
"import": "./dist/axios.wrapper.js",
"types": "./dist/axios.wrapper.d.ts"
}
},
"scripts": {
"type-check": "tsc --noEmit",
"prebuild": "npm run type-check && npm run test",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"typescript",
"axios",
"type-safe",
"api",
"wrapper",
"ts-axios-wrapper",
"type-safe-axios",
"full-type-safety-axios",
"ts-axios"
],
"repository": {
"type": "git",
"url": "https://github.com/iambpn/ts-axios-wrapper"
},
"author": "Bipin Maharjan",
"license": "ISC",
"description": "A lightweight TypeScript wrapper around Axios that provides full type safety for API requests and responses.",
"files": [
"dist"
],
"dependencies": {
"axios": "^1.12.2"
},
"devDependencies": {
"@tsd/typescript": "^5.9.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"jest": "^30.1.3",
"jest-tsd": "^0.2.2",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}