-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "axios-fp-io-ts",
"version": "2.1.2",
"description": "A wrapper around axios which uses io-ts to validate the received response.",
"type": "module",
"source": "src/index.ts",
"exports": {
".": {
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
},
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"types": "lib/index.d.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"unpkg": "./lib/index.umd.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xballoy/axios-fp-io-ts.git"
},
"author": "Xavier Balloy",
"license": "MIT",
"keywords": [
"typescript",
"functional-programming",
"validator",
"validation",
"schema",
"xhr",
"http",
"ajax",
"promise",
"node"
],
"bugs": {
"url": "https://github.com/xballoy/axios-fp-io-ts/issues"
},
"homepage": "https://github.com/xballoy/axios-fp-io-ts#readme",
"files": [
"lib"
],
"scripts": {
"build": "microbundle",
"format:check": "biome format src",
"format:fix": "biome format --write src",
"lint:check": "biome lint src",
"lint:fix": "biome lint --apply src",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/core": "1.9.2",
"@tsconfig/node20": "20.1.4",
"@types/node": "22.9.0",
"lefthook": "1.8.4",
"microbundle": "0.15.1",
"msw": "2.6.5",
"typescript": "5.6.3",
"vitest": "2.1.5"
},
"peerDependencies": {
"axios": "~0.28.0",
"fp-ts": "^2.8.0",
"io-ts": "^2.2.10"
}
}