|
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 | + "homepage": "https://github.com/api-platform/api-doc-parser", |
| 6 | + "bugs": "https://github.com/api-platform/api-doc-parser/issues", |
| 7 | + "repository": "api-platform/api-doc-parser", |
| 8 | + "license": "MIT", |
| 9 | + "author": "Kévin Dunglas", |
| 10 | + "sideEffects": false, |
| 11 | + "type": "module", |
| 12 | + "exports": "./lib/index.js", |
| 13 | + "main": "./lib/index.js", |
5 | 14 | "files": [ |
6 | 15 | "*.md", |
7 | 16 | "lib", |
8 | 17 | "src" |
9 | 18 | ], |
10 | | - "type": "module", |
11 | | - "exports": "./lib/index.js", |
12 | | - "main": "./lib/index.js", |
13 | | - "repository": "api-platform/api-doc-parser", |
14 | | - "homepage": "https://github.com/api-platform/api-doc-parser", |
15 | | - "bugs": "https://github.com/api-platform/api-doc-parser/issues", |
16 | | - "author": "Kévin Dunglas", |
17 | | - "license": "MIT", |
| 19 | + "scripts": { |
| 20 | + "build": "rm -rf lib/* && tsc", |
| 21 | + "eslint-check": "eslint-config-prettier src/index.ts", |
| 22 | + "fix": "pnpm lint --fix", |
| 23 | + "lint": "eslint src", |
| 24 | + "test": "NODE_OPTIONS=--experimental-vm-modules jest", |
| 25 | + "watch": "tsc --watch" |
| 26 | + }, |
| 27 | + "dependencies": { |
| 28 | + "graphql": "^16.0.0", |
| 29 | + "inflection": "^3.0.0", |
| 30 | + "jsonld": "^8.3.2", |
| 31 | + "jsonref": "^9.0.0", |
| 32 | + "lodash.get": "^4.4.0", |
| 33 | + "tslib": "^2.0.0" |
| 34 | + }, |
18 | 35 | "devDependencies": { |
19 | 36 | "@eslint/compat": "^1.2.5", |
20 | 37 | "@eslint/eslintrc": "^3.2.0", |
|
41 | 58 | "typescript": "^5.7.0", |
42 | 59 | "typescript-eslint": "^8.22.0" |
43 | 60 | }, |
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" |
59 | | - }, |
60 | | - "sideEffects": false, |
| 61 | + "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977", |
61 | 62 | "publishConfig": { |
62 | 63 | "access": "public" |
63 | | - }, |
64 | | - "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977" |
| 64 | + } |
65 | 65 | } |
0 commit comments