-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.23 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
{
"name": "@kumahq/config",
"version": "1.0.0",
"private": true,
"description": "Shared dependencies and configuration for kuma-gui",
"author": "Kong",
"type": "module",
"exports": {
".": {
"default": "./src/index.ts"
},
"./cypress/e2e": {
"import": "./src/cypress/e2e.ts"
},
"./cypress": {
"import": "./src/cypress/config.ts"
},
"./playwright": {
"import": "./src/playwright/index.ts"
},
"./eslint": {
"import": "./src/eslint.ts"
},
"./vite": {
"import": "./src/vite/index.ts"
},
"./vite/modules": {
"types": "./src/vite/plugins/modules.d.ts"
},
"./utils": {
"import": "./src/utils/index.ts"
},
"./tsconfig/app": "./tsconfig/app.json",
"./tsconfig/browser": "./tsconfig/browser.json",
"./tsconfig/node": "./tsconfig/node.json"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.9.1"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.4.0",
"@cucumber/gherkin-utils": "^12.0.1",
"@eslint/js": "^9.39.4",
"@kong/stylelint-plugin-design-tokens": "^1.0.1",
"@kumahq/eslint-package-constraints": "*",
"@kumahq/gherkin-web": "*",
"@playwright/test": "^1.60.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@stylistic/stylelint-plugin": "^5.2.0",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/tsconfig": "^0.9.1",
"deepmerge": "^4.3.1",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.7.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^17.0.8",
"lockfile-lint": "^5.0.0",
"markdown-it": "^14.3.0",
"openapi-format": "^1.33.5",
"openapi-typescript": "^7.13.0",
"playwright-bdd": "^8.5.1",
"stylelint": "^17.14.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vitest": "^4.1.9",
"vue-tsc": "^3.3.1"
}
}