-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.33 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.33 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@api-platform/api-doc-parser",
"version": "0.16.9",
"description": "Transform an API documentation (Hydra, OpenAPI, GraphQL) in an intermediate representation that can be used for various tasks such as creating smart API clients, scaffolding code or building administration interfaces.",
"keywords": [
"api",
"api-platform",
"documentation",
"hydra",
"openapi",
"graphql",
"jsonld",
"json-schema",
"typescript",
"client"
],
"homepage": "https://github.com/api-platform/api-doc-parser",
"bugs": "https://github.com/api-platform/api-doc-parser/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/api-platform/api-doc-parser.git"
},
"license": "MIT",
"author": "Kévin Dunglas",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./core": {
"types": "./lib/core/index.d.ts",
"import": "./lib/core/index.js",
"default": "./lib/core/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "rm -rf lib && tsc --project tsconfig.build.json",
"format": "prettier . --write --experimental-cli",
"format:check": "prettier . --check --experimental-cli",
"knip": "knip",
"knip:fix": "knip --fix",
"lint": "oxlint",
"lint:fix": "oxlint --fix --fix-suggestions",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"graphql": "^16.11.0",
"inflection": "^3.0.2",
"jsonld": "^8.3.3",
"jsonref": "^9.0.0"
},
"devDependencies": {
"@types/jsonld": "^1.5.15",
"@types/node": "^22.16.5",
"@vitest/coverage-v8": "3.2.4",
"knip": "^5.62.0",
"msw": "^2.10.4",
"openapi-types": "^12.1.3",
"oxlint": "^1.8.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.29.1",
"engines": {
"node": ">= 20"
},
"publishConfig": {
"access": "public"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">= 20"
}
}
}