-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.18 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
{
"name": "@api-platform/api-doc-parser",
"version": "0.16.8",
"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"
},
"./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",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest",
"typecheck": "tsc --noEmit",
"test:coverage": "vitest --coverage",
"format": "prettier . --write --experimental-cli",
"format:check": "prettier . --check --experimental-cli",
"knip": "knip",
"knip:fix": "knip --fix"
},
"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.15.34",
"@vitest/coverage-v8": "3.2.4",
"knip": "^5.61.3",
"msw": "^2.10.2",
"openapi-types": "^12.1.3",
"oxlint": "^1.4.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}