-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "axios-service-base-ts",
"private": false,
"version": "0.3.0",
"description": "A base class for API services using Axios",
"homepage": "https://github.com/Xkonti/axios-service-base-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Xkonti/axios-service-base-ts"
},
"keywords": [
"typescript",
"axios",
"api",
"service",
"class"
],
"author": "Beniamin (Xkonti) Dudek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xkonti/axios-service-base-ts/issues"
},
"type": "module",
"main": "./dist/axios-service-base-ts.umd.cjs",
"module": "./dist/axios-service-base-ts.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/axios-service-base-ts.js",
"require": "./dist/axios-service-base-ts.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage"
},
"dependencies": {
"axios": "^1.4.0",
"lodash-es": "^4.17.21",
"neverthrow": "^6.0.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"express": "^4.17.0",
"typescript": "^5.1.6",
"vite": "^4.4.0",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-eslint": "^1.8.0",
"vitest": "^0.33.0"
}
}