-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.24 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.24 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
{
"name": "api-diff-viewer",
"version": "1.1.0",
"description": "CodeMirror-based component to view the difference between two documents: OpenAPI, AsyncAPI, JSON Schema",
"author": "Damir Yusipov",
"license": "MIT",
"files": [
"dist"
],
"module": "dist/api-diff-viewer.es.js",
"main": "dist/api-diff-viewer.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/api-diff-viewer.es.js",
"require": "./dist/api-diff-viewer.umd.js"
}
},
"sideEffects": [
"*.css"
],
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "vitest --project=storybook",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"demo": "vite demo/",
"build-demo": "vite build --config demo/vite.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/udamir/api-diff-viewer"
},
"keywords": [
"codemirror",
"jsonschema",
"diff",
"compare",
"side-by-side",
"openapi",
"swagger",
"asyncapi",
"api"
],
"dependencies": {
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.12",
"@lezer/highlight": "^1.2.3",
"api-smart-diff": "^1.0.6",
"diff": "^8.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@codemirror/search": "^6.6.0",
"@storybook/addon-docs": "^10.2.7",
"@storybook/addon-links": "^10.2.7",
"@storybook/addon-vitest": "^10.2.7",
"@storybook/html-vite": "^10.2.7",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"js-yaml": "^4.1.1",
"playwright": "^1.58.2",
"storybook": "^10.2.7",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"resolutions": {
"strip-ansi": "6.0.1",
"jackspeak": "2.1.1"
}
}