-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.43 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
93
94
95
96
97
98
99
100
{
"name": "@inditextech/swagger-ui-plugin-diff-highlight",
"version": "0.1.0",
"description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.",
"keywords": [
"swagger",
"swagger-ui",
"swagger-ui-react",
"swagger-ui-plugin",
"openapi",
"openapi-diff",
"oas",
"oasdiff",
"api",
"api-diff",
"api-changes",
"api-versioning",
"api-documentation",
"diff",
"diff-highlight",
"diff-viewer",
"change-highlight",
"changelog",
"rest",
"react",
"plugin",
"highlight"
],
"license": "Apache-2.0",
"author": "Bruno Pedro <brunolgp@inditex.com>",
"homepage": "https://github.com/InditexTech/swagger-ui-plugin-diff-highlight#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/InditexTech/swagger-ui-plugin-diff-highlight.git"
},
"bugs": {
"url": "https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/diff.css"
},
"sideEffects": [
"*.css"
],
"files": [
"dist",
"types"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run lint && npm run format:check && npm test && npm run build"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"swagger-ui-react": ">=4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"immutable": "^4.3.7",
"jsdom": "^29.1.1",
"prettier": "^3.9.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swagger-ui-react": "^5.32.8",
"tsup": "^8.3.5",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
},
"overrides": {
"esbuild": "^0.28.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}