@kong/kongponents 9.45.3-pr.2957.da143ec.0 → 9.45.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +31 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong/kongponents",
|
|
3
|
-
"version": "9.45.3
|
|
3
|
+
"version": "9.45.3",
|
|
4
4
|
"description": "Kong Component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -30,6 +30,34 @@
|
|
|
30
30
|
"./package.json": "./package.json",
|
|
31
31
|
"./dist/*": "./dist/*"
|
|
32
32
|
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build:cli": "rimraf ./bin && tsc --project ./cli/tsconfig.json && chmod u+x ./bin/index.js",
|
|
35
|
+
"build:docs": "vitepress build docs",
|
|
36
|
+
"build:kongponents": "pnpm typecheck && vite build && vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly && tsc-alias -p './tsconfig.build.json' && pnpm build:nuxt",
|
|
37
|
+
"build:nuxt": "tsc -p ./tsconfig.build.nuxt.json --outDir dist/nuxt",
|
|
38
|
+
"build:visualize": "cross-env-shell BUILD_VISUALIZER=true vite build -m production",
|
|
39
|
+
"build": "pnpm build:cli && pnpm stylelint && pnpm lint && pnpm build:kongponents && pnpm build:docs",
|
|
40
|
+
"build:ci": "pnpm build:kongponents && pnpm build:docs",
|
|
41
|
+
"commit": "cz",
|
|
42
|
+
"create-kongponent": "node ./bin/index.js",
|
|
43
|
+
"sandbox:dev": "cross-env USE_SANDBOX=true vite",
|
|
44
|
+
"sandbox:build": "cross-env USE_SANDBOX=true vite build && shx cp sandbox/dist/index.html sandbox/dist/404.html",
|
|
45
|
+
"sandbox:build:netlify": "cross-env USE_SANDBOX=true USE_NETLIFY=true vite build && shx cp sandbox/dist/index.html sandbox/dist/404.html",
|
|
46
|
+
"sandbox:preview": "cross-env USE_SANDBOX=true vite preview",
|
|
47
|
+
"docs:build": "vitepress build docs",
|
|
48
|
+
"docs:dev": "vitepress dev docs",
|
|
49
|
+
"docs:serve": "vitepress serve docs",
|
|
50
|
+
"docs:preview": "vitepress preview docs --port 8080",
|
|
51
|
+
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
52
|
+
"lint": "eslint",
|
|
53
|
+
"lint:fix": "eslint --fix",
|
|
54
|
+
"stylelint": "stylelint './src/**/*.{css,scss,sass,vue}'",
|
|
55
|
+
"stylelint:fix": "stylelint './src/**/*.{css,scss,sass,vue}' --fix",
|
|
56
|
+
"test": "cypress run --component -b chrome",
|
|
57
|
+
"test:open": "cypress open --component -b chrome",
|
|
58
|
+
"test:spec": "cypress run --component -b chrome --spec",
|
|
59
|
+
"semantic-release": "semantic-release"
|
|
60
|
+
},
|
|
33
61
|
"dependencies": {
|
|
34
62
|
"@floating-ui/vue": "^1.1.9",
|
|
35
63
|
"@kong/icons": "^1.39.0",
|
|
@@ -166,6 +194,7 @@
|
|
|
166
194
|
"node": ">=v16.20.2 || >=18.12.1 || >=20.14.0 || >=22.14.0",
|
|
167
195
|
"pnpm": ">=9.11.0 || >=10.10.0"
|
|
168
196
|
},
|
|
197
|
+
"packageManager": "pnpm@10.18.3",
|
|
169
198
|
"volta": {
|
|
170
199
|
"node": "24.10.0",
|
|
171
200
|
"pnpm": "10.18.3"
|
|
@@ -179,33 +208,5 @@
|
|
|
179
208
|
"jiraPrepend": "[",
|
|
180
209
|
"jiraAppend": "]"
|
|
181
210
|
}
|
|
182
|
-
},
|
|
183
|
-
"scripts": {
|
|
184
|
-
"build:cli": "rimraf ./bin && tsc --project ./cli/tsconfig.json && chmod u+x ./bin/index.js",
|
|
185
|
-
"build:docs": "vitepress build docs",
|
|
186
|
-
"build:kongponents": "pnpm typecheck && vite build && vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly && tsc-alias -p './tsconfig.build.json' && pnpm build:nuxt",
|
|
187
|
-
"build:nuxt": "tsc -p ./tsconfig.build.nuxt.json --outDir dist/nuxt",
|
|
188
|
-
"build:visualize": "cross-env-shell BUILD_VISUALIZER=true vite build -m production",
|
|
189
|
-
"build": "pnpm build:cli && pnpm stylelint && pnpm lint && pnpm build:kongponents && pnpm build:docs",
|
|
190
|
-
"build:ci": "pnpm build:kongponents && pnpm build:docs",
|
|
191
|
-
"commit": "cz",
|
|
192
|
-
"create-kongponent": "node ./bin/index.js",
|
|
193
|
-
"sandbox:dev": "cross-env USE_SANDBOX=true vite",
|
|
194
|
-
"sandbox:build": "cross-env USE_SANDBOX=true vite build && shx cp sandbox/dist/index.html sandbox/dist/404.html",
|
|
195
|
-
"sandbox:build:netlify": "cross-env USE_SANDBOX=true USE_NETLIFY=true vite build && shx cp sandbox/dist/index.html sandbox/dist/404.html",
|
|
196
|
-
"sandbox:preview": "cross-env USE_SANDBOX=true vite preview",
|
|
197
|
-
"docs:build": "vitepress build docs",
|
|
198
|
-
"docs:dev": "vitepress dev docs",
|
|
199
|
-
"docs:serve": "vitepress serve docs",
|
|
200
|
-
"docs:preview": "vitepress preview docs --port 8080",
|
|
201
|
-
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
202
|
-
"lint": "eslint",
|
|
203
|
-
"lint:fix": "eslint --fix",
|
|
204
|
-
"stylelint": "stylelint './src/**/*.{css,scss,sass,vue}'",
|
|
205
|
-
"stylelint:fix": "stylelint './src/**/*.{css,scss,sass,vue}' --fix",
|
|
206
|
-
"test": "cypress run --component -b chrome",
|
|
207
|
-
"test:open": "cypress open --component -b chrome",
|
|
208
|
-
"test:spec": "cypress run --component -b chrome --spec",
|
|
209
|
-
"semantic-release": "semantic-release"
|
|
210
211
|
}
|
|
211
|
-
}
|
|
212
|
+
}
|