-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.31 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
{
"name": "@kong-ui-public/public-ui-components",
"version": "0.0.0-development",
"private": true,
"type": "module",
"scripts": {
"build": "cross-env FORCE_COLOR=1 pnpm -r run build",
"lint": "cross-env FORCE_COLOR=1 pnpm -r run lint",
"lint:fix": "cross-env FORCE_COLOR=1 pnpm -r run lint:fix",
"stylelint": "cross-env FORCE_COLOR=1 pnpm -r run stylelint",
"stylelint:fix": "cross-env FORCE_COLOR=1 pnpm -r run stylelint:fix",
"typecheck": "cross-env FORCE_COLOR=1 pnpm -r run typecheck",
"test:component": "BABEL_ENV=cypress pnpm -r run test:component",
"test:component:open": "BABEL_ENV=cypress cypress open --component -b chrome",
"test:component:ci": "BABEL_ENV=cypress cypress run --component -b chrome",
"test:unit": "cross-env FORCE_COLOR=1 pnpm -r run test:unit",
"test:unit:open": "cross-env FORCE_COLOR=1 pnpm -r run test:unit:open",
"create-package": "pnpm --filter \"@kong-ui-public/cli\" run create-package",
"commit": "cz",
"lerna": "lerna"
},
"devDependencies": {
"@babel/types": "^8.0.4",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^2.1.10",
"@kong/design-tokens": "3.3.1",
"@kong/eslint-config-kong-ui": "^1.7.1",
"@kong/kongponents": "9.64.15",
"@kong/stylelint-plugin-design-tokens": "^2.0.0",
"@stylistic/stylelint-plugin": "^5.3.0",
"@types/flat": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^30.0.0",
"@types/node": "^24.13.3",
"@vitejs/plugin-vue": "^6.0.8",
"@vitejs/plugin-vue-jsx": "^5.1.6",
"@vitest/ui": "^4.1.11",
"@vue/test-utils": "^2.5.0",
"@vue/tsconfig": "^0.9.1",
"c8": "^12.0.0",
"commitizen": "^4.3.2",
"cross-env": "^10.1.0",
"cypress": "^15.21.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.9.1",
"js-yaml": "^5.4.1",
"jsdom": "^30.0.1",
"lerna": "^10.0.1",
"npm-run-all2": "^9.0.3",
"postcss": "^8.5.26",
"postcss-custom-properties": "^15.0.1",
"postcss-html": "^2.0.0",
"rimraf": "^6.1.3",
"rollup-plugin-visualizer": "^7.1.1",
"sass": "^1.103.1",
"stylelint": "^17.14.1",
"stylelint-config-html": "^2.0.0",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^2.0.0",
"stylelint-order": "^8.1.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.13.0",
"typescript": "~5.9.3",
"uuid": "^14.0.2",
"vite": "^7.3.6",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-vue-devtools": "^8.2.1",
"vitest": "^4.1.11",
"vue": "^3.5.41",
"vue-router": "^5.3.0",
"vue-tsc": "^3.3.11"
},
"repository": {
"type": "git",
"url": "https://github.com/Kong/public-ui-components"
},
"license": "Apache-2.0",
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true,
"jiraLocation": "post-description",
"jiraPrepend": "[",
"jiraAppend": "]"
}
},
"engines": {
"node": ">=18.20.8"
},
"volta": {
"node": "24.20.0",
"pnpm": "11.24.0"
},
"packageManager": "pnpm@11.24.0"
}