-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.85 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.85 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@covesa/ifex-viewer",
"version": "1.4.0",
"description": "The IFEX Viewer is a web component designed to display API specifications created with the Interface Exchange Framework (IFEX).",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/COVESA/ifex-viewer.git"
},
"private": false,
"type": "module",
"author": "Mercedes-Benz Tech Innovation GmbH",
"keywords": [
"IFEX",
"api-documentation",
"api",
"vue",
"IFEX",
"api-viewer",
"api-visualization",
"IDL",
"web-component",
"developer-tools"
],
"exports": {
".": {
"import": "./dist/ifex-viewer.es.js",
"require": "./dist/ifex-viewer.umd.js"
}
},
"main": "./dist/ifex-viewer.es.js",
"module": "./dist/ifex-viewer.es.js",
"types": "./dist/ifex-viewer.d.ts",
"files": [
"dist/",
"README.md",
"3RD_PARTY_LICENSES.txt",
"LICENSE"
],
"scripts": {
"build": "vue-tsc -b && vite build",
"build-storybook": "storybook build",
"dev": "vite",
"preview": "vite preview",
"lint": "eslint",
"docs:build": "pnpm build && vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"playwright": "playwright test",
"playwright:ui": "playwright test --ui",
"dev:e2e:angular": "cd e2e/angular && ng serve",
"dev:e2e:react": "cd e2e/react && vite",
"preview:e2e:react": "cd e2e/react && vite build && vite preview",
"dev:e2e:vue": "cd e2e/vue && vite",
"preview:e2e:vue": "cd e2e/vue && vite build && vite preview",
"storybook": "storybook dev -p 6006",
"test": "vitest"
},
"dependencies": {
"@heroicons/vue": "2.2.0",
"@vueuse/core": "13.9.0",
"ajv": "8.17.1",
"highlight.js": "11.11.1",
"pinia": "3.0.4",
"uuid": "11.1.0",
"vue": "3.5.30",
"yaml": "2.8.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.2.3",
"@angular/cli": "21.2.3",
"@angular/common": "21.2.5",
"@angular/compiler": "21.2.5",
"@angular/compiler-cli": "21.2.5",
"@angular/core": "21.2.5",
"@angular/forms": "21.2.5",
"@angular/platform-browser": "21.2.5",
"@angular/platform-browser-dynamic": "21.2.5",
"@angular/router": "21.2.5",
"@codemirror/commands": "6.8.1",
"@codemirror/lang-yaml": "6.1.2",
"@codemirror/state": "6.5.2",
"@codemirror/theme-one-dark": "6.1.3",
"@codemirror/view": "6.38.1",
"@eslint/js": "9.33.0",
"@pinia/testing": "1.0.3",
"@playwright/test": "1.54.2",
"@storybook/addon-docs": "10.3.1",
"@storybook/addon-links": "10.3.1",
"@storybook/addon-themes": "10.3.1",
"@storybook/vue3-vite": "10.3.1",
"@tailwindcss/vite": "4.1.12",
"@testing-library/jest-dom": "6.7.0",
"@testing-library/user-event": "14.6.1",
"@testing-library/vue": "8.1.0",
"@types/node": "22.12.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "5.2.0",
"@vitejs/plugin-vue": "6.0.5",
"@vue/test-utils": "2.4.6",
"codemirror": "6.0.2",
"eslint": "9.39.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"eslint-plugin-storybook": "10.3.1",
"eslint-plugin-testing-library": "7.16.1",
"eslint-plugin-vue": "9.30.0",
"globals": "15.14.0",
"jsdom": "29.0.1",
"prettier": "3.6.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "7.8.2",
"storybook": "10.3.1",
"tailwindcss": "4.1.12",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.39.1",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vitepress": "1.6.4",
"vitest": "4.1.0",
"vue-eslint-parser": "10.2.0",
"vue-tsc": "3.2.6",
"wait-on": "8.0.4",
"zone.js": "0.15.1"
},
"engines": {
"node": ">= 20.0.0"
}
}