forked from orval-labs/orval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) 路 1.73 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) 路 1.73 KB
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": "@orval/core",
"version": "8.11.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/orval-labs/orval.git",
"directory": "packages/core"
},
"homepage": "https://orval.dev",
"bugs": {
"url": "https://github.com/orval-labs/orval/issues"
},
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": {
"development": "./src/index.ts",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"!dist/**/*.d.ts.map",
"!dist/**/*.d.mts.map"
],
"scripts": {
"build": "tsdown --config-loader unrun",
"dev": "tsdown --config-loader unrun --watch src",
"lint": "eslint .",
"test": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rimraf .turbo dist",
"nuke": "rimraf .turbo dist node_modules"
},
"dependencies": {
"@scalar/openapi-types": "catalog:",
"acorn": "^8.15.0",
"compare-versions": "^6.1.1",
"debug": "^4.4.3",
"esbuild": "^0.27.4",
"esutils": "2.0.3",
"fs-extra": "^11.3.2",
"tinyglobby": "^0.2.16",
"jiti": "^2.6.1",
"remeda": "^2.33.6",
"typedoc": "^0.28.19"
},
"devDependencies": {
"@faker-js/faker": "catalog:tooling",
"@types/debug": "^4.1.12",
"@types/esutils": "^2.0.2",
"@types/fs-extra": "^11.0.4",
"eslint": "catalog:",
"rimraf": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"@faker-js/faker": ">=10"
},
"peerDependenciesMeta": {
"@faker-js/faker": {
"optional": true
}
},
"publishConfig": {
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
}
}