-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 4.96 KB
/
package.json
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@kong/kong-auth-elements",
"version": "2.13.11",
"type": "module",
"main": "dist/kong-auth-elements.vue.umd.js",
"module": "dist/kong-auth-elements.vue.es.js",
"exports": {
".": {
"import": "./dist/kong-auth-elements.vue.es.js",
"require": "./dist/kong-auth-elements.vue.umd.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"scripts": {
"dev:components": "cross-env SANDBOX=components vite",
"dev:elements": "cross-env SANDBOX=elements vite",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint './src/**/*.{css,scss,sass,vue}'",
"stylelint:fix": "yarn stylelint --fix",
"test": "cypress run --component -b chrome",
"test:open": "cypress open --component -b chrome",
"test:spec": "cypress run --component -b chrome --spec",
"preview:components": "cross-env PREVIEW=true INCLUDE_VUE=true SANDBOX=components vite build --emptyOutDir && cross-env SANDBOX=components vite preview",
"preview:elements": "cross-env PREVIEW=true INCLUDE_VUE=true SANDBOX=elements vite build --emptyOutDir && cross-env SANDBOX=elements vite preview",
"preview:web-components": "cross-env INCLUDE_VUE=true vite build --outDir './sandbox/web-components/dist/lib' && cross-env PREVIEW=true SANDBOX=web-components vite build --emptyOutDir=false && cross-env SANDBOX=web-components vite preview",
"build": "yarn stylelint && yarn lint && yarn typecheck && yarn build:package && yarn build:package:omitVue && vue-tsc --emitDeclarationOnly",
"build:package": "cross-env INCLUDE_VUE=true vite build",
"build:package:omitVue": "cross-env INCLUDE_VUE=no vite build",
"build:visualize": "cross-env BUILD_VISUALIZER=true INCLUDE_VUE=false vite build -m production",
"semantic-release": "semantic-release",
"commit": "cz"
},
"dependencies": {
"@kong/icons": "^1.20.0",
"@xstate/vue": "^2.0.0",
"axios": "^1.7.3",
"vue": "^3.4.35",
"vue-recaptcha": "^2.0.3",
"xstate": "^4.38.3"
},
"devDependencies": {
"@babel/types": "^7.25.2",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@cypress/vite-dev-server": "^5.1.1",
"@cypress/vue": "^6.0.1",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^1.7.11",
"@kong/design-tokens": "^1.17.2",
"@kong/eslint-config-kong-ui": "^1.1.2",
"@kong/kongponents": "^9.14.16",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.19.43",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/tsconfig": "^0.6.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cypress": "^13.13.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.15.0",
"postcss-custom-properties": "^13.3.12",
"postcss-html": "^1.7.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.8",
"semantic-release": "^22.0.12",
"start-server-and-test": "^2.0.5",
"stylelint": "^16.8.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-vue-devtools": "^7.3.7",
"vue-router": "^4.4.2",
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"@kong/kongponents": ">= ^8.126.2 || < 10",
"axios": "^1.7.3",
"vue": "<= 3.3.0"
},
"files": [
"dist"
],
"typings": "dist/types",
"publishConfig": {
"access": "public"
},
"author": "Kong, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Kong/kong-auth-elements.git"
},
"homepage": "https://github.com/Kong/kong-auth-elements",
"bugs": {
"url": "https://github.com/Kong/kong-auth-elements/issues"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
]
}
],
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true,
"jiraLocation": "post-description",
"jiraPrepend": "[",
"jiraAppend": "]"
}
},
"engines": {
"node": ">=v16.20.2"
},
"volta": {
"node": "18.20.4",
"yarn": "1.22.22"
}
}