-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "mswpida",
"version": "2.0.0",
"description": "A wrapper to use MSW in a type-safe manner for aspida users.",
"keywords": [
"msw",
"aspida",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/mashabow/mswpida.git"
},
"license": "MIT",
"author": "Masaya Nakamura <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"generate:example-api": "openapi2aspida -i https://raw.githubusercontent.com/OAI/OpenAPI-Specification/3.1.0/examples/v3.0/petstore-expanded.yaml -o ./example/generated-api",
"lint:biome": "biome check .",
"lint:biome:ci": "biome ci .",
"lint:tsc": "tsc --noEmit",
"test": "vitest",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@aspida/fetch": "^1.14.0",
"@biomejs/biome": "1.9.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^20.16.2",
"aspida": "^1.14.0",
"msw": "^2.4.1",
"openapi2aspida": "^0.23.2",
"tsup": "7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"peerDependencies": {
"aspida": "^1.14.0",
"msw": "^2.4.1"
},
"packageManager": "[email protected]",
"readme": "https://github.com/mashabow/mswpida#readme"
}