|
2 | 2 | "name": "@api-platform/api-doc-parser", |
3 | 3 | "version": "0.16.8", |
4 | 4 | "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.", |
5 | | - "files": [ |
6 | | - "*.md", |
7 | | - "lib", |
8 | | - "src" |
| 5 | + "keywords": [ |
| 6 | + "api", |
| 7 | + "api-platform", |
| 8 | + "documentation", |
| 9 | + "hydra", |
| 10 | + "openapi", |
| 11 | + "graphql", |
| 12 | + "jsonld", |
| 13 | + "json-schema", |
| 14 | + "typescript", |
| 15 | + "client" |
9 | 16 | ], |
10 | | - "type": "module", |
11 | | - "exports": "./lib/index.js", |
12 | | - "main": "./lib/index.js", |
13 | | - "repository": "api-platform/api-doc-parser", |
14 | 17 | "homepage": "https://github.com/api-platform/api-doc-parser", |
15 | 18 | "bugs": "https://github.com/api-platform/api-doc-parser/issues", |
16 | | - "author": "Kévin Dunglas", |
| 19 | + "repository": { |
| 20 | + "type": "git", |
| 21 | + "url": "git+https://github.com/api-platform/api-doc-parser.git" |
| 22 | + }, |
17 | 23 | "license": "MIT", |
| 24 | + "author": "Kévin Dunglas", |
| 25 | + "sideEffects": false, |
| 26 | + "type": "module", |
| 27 | + "exports": { |
| 28 | + ".": { |
| 29 | + "types": "./lib/index.d.ts", |
| 30 | + "import": "./lib/index.js", |
| 31 | + "default": "./lib/index.js" |
| 32 | + }, |
| 33 | + "./package.json": "./package.json" |
| 34 | + }, |
| 35 | + "main": "./lib/index.js", |
| 36 | + "types": "./lib/index.d.ts", |
| 37 | + "files": [ |
| 38 | + "lib", |
| 39 | + "LICENSE", |
| 40 | + "package.json", |
| 41 | + "README.md" |
| 42 | + ], |
| 43 | + "scripts": { |
| 44 | + "build": "rm -rf lib && tsc --project tsconfig.build.json", |
| 45 | + "build:watch": "tsc --watch", |
| 46 | + "eslint-check": "eslint-config-prettier src/index.ts", |
| 47 | + "lint": "eslint src", |
| 48 | + "lint:fix": "eslint src --fix", |
| 49 | + "test": "NODE_OPTIONS=--experimental-vm-modules jest", |
| 50 | + "typecheck": "tsc --noEmit", |
| 51 | + "typecheck:watch": "tsc --noEmit --watch" |
| 52 | + }, |
| 53 | + "dependencies": { |
| 54 | + "graphql": "^16.0.0", |
| 55 | + "inflection": "^3.0.0", |
| 56 | + "jsonld": "^8.3.2", |
| 57 | + "jsonref": "^9.0.0", |
| 58 | + "lodash.get": "^4.4.0" |
| 59 | + }, |
18 | 60 | "devDependencies": { |
19 | 61 | "@eslint/compat": "^1.2.5", |
20 | 62 | "@eslint/eslintrc": "^3.2.0", |
21 | 63 | "@eslint/js": "^9.19.0", |
| 64 | + "@jest/globals": "29.7.0", |
22 | 65 | "@jest/types": "29.0.0", |
23 | 66 | "@types/inflection": "^1.13.0", |
24 | 67 | "@types/jest": "^29.0.0", |
|
41 | 84 | "typescript": "^5.7.0", |
42 | 85 | "typescript-eslint": "^8.22.0" |
43 | 86 | }, |
44 | | - "dependencies": { |
45 | | - "graphql": "^16.0.0", |
46 | | - "inflection": "^3.0.0", |
47 | | - "jsonld": "^8.3.2", |
48 | | - "jsonref": "^9.0.0", |
49 | | - "lodash.get": "^4.4.0", |
50 | | - "tslib": "^2.0.0" |
51 | | - }, |
52 | | - "scripts": { |
53 | | - "test": "NODE_OPTIONS=--experimental-vm-modules jest", |
54 | | - "lint": "eslint src", |
55 | | - "fix": "pnpm lint --fix", |
56 | | - "eslint-check": "eslint-config-prettier src/index.ts", |
57 | | - "build": "rm -rf lib/* && tsc", |
58 | | - "watch": "tsc --watch" |
| 87 | + "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977", |
| 88 | + "engines": { |
| 89 | + "node": ">=18" |
59 | 90 | }, |
60 | | - "sideEffects": false, |
61 | 91 | "publishConfig": { |
62 | 92 | "access": "public" |
63 | | - }, |
64 | | - "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977" |
| 93 | + } |
65 | 94 | } |
0 commit comments