-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "openapi-ts-mock-generator",
"version": "1.0.12",
"description": "typescript mock data generator based openapi",
"scripts": {
"build": "tsup ./src",
"test": "vitest run",
"pretty": "npx prettier **/*.ts --write --tab-width 2 --print-width 100 --no-semi --single-quote false --trailing-comma es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bill-Park/openapi-ts-mock-generator.git"
},
"keywords": [
"typescript",
"openapi",
"mock",
"msw"
],
"author": "Bill Park",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bill-Park/openapi-ts-mock-generator/issues"
},
"homepage": "https://github.com/Bill-Park/openapi-ts-mock-generator#readme",
"devDependencies": {
"@swc/core": "^1.4.17",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": "./dist/cli.js",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@faker-js/faker": "^8.4.1",
"change-case-all": "^2.1.0",
"oazapfts": "^6.0.4"
}
}