-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "typed-axios-instance",
"version": "3.3.1",
"description": "Typed Axios is a simple way to create an Axios instance that is fully typed with the routes from an application.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup ./src --dts --sourcemap",
"test": "npm run typecheck && ava",
"format": "prettier -w .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seamapi/typed-axios.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seamapi/typed-axios/issues"
},
"homepage": "https://github.com/seamapi/typed-axios#readme",
"peerDependencies": {
"axios": ">=1.0.0",
"type-fest": ">=3.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"ava": "^5.1.0",
"axios": "^1.2.2",
"esbuild": "^0.17.0",
"esbuild-register": "^3.4.2",
"expect-type": "^0.15.0",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"type-fest": "^3.7.0",
"typescript": "^4.9.4"
}
}