@retailrocketgroup/smart-search-base 0.1.0

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 ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@retailrocketgroup/smart-search-base",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=20"
8
+ },
9
+ "main": "./dist/index.umd.js",
10
+ "module": "./dist/index.es.js",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "import": "./dist/index.js"
17
+ }
18
+ },
19
+ "dependencies": {
20
+ "vue": "^3.5.13",
21
+ "vue-i18n": "^10.0.5"
22
+ },
23
+ "devDependencies": {
24
+ "@commitlint/cli": "^19.6.1",
25
+ "@commitlint/config-conventional": "^19.6.0",
26
+ "@commitlint/format": "^19.5.0",
27
+ "@eslint/compat": "^1.2.5",
28
+ "@eslint/js": "^9.18.0",
29
+ "@release-it/conventional-changelog": "^9.0.4",
30
+ "@retailrocket/retailrocket.analytics.rocketsearch.apiclients.v2": "^1.0.137",
31
+ "@rushstack/eslint-patch": "^1.10.5",
32
+ "@storybook/addon-essentials": "^8.5.1",
33
+ "@storybook/addon-interactions": "^8.5.1",
34
+ "@storybook/addon-links": "^8.5.1",
35
+ "@storybook/addon-onboarding": "^8.5.1",
36
+ "@storybook/blocks": "^8.5.1",
37
+ "@storybook/test": "^8.5.1",
38
+ "@storybook/test-runner": "^0.19.1",
39
+ "@storybook/types": "^8.5.1",
40
+ "@storybook/vue3": "^8.5.1",
41
+ "@storybook/vue3-vite": "^8.5.1",
42
+ "@thames/monads": "^0.7.0",
43
+ "@tsconfig/node20": "^20.1.4",
44
+ "@types/jsdom": "^21.1.7",
45
+ "@types/lodash-es": "^4.17.12",
46
+ "@types/node": "^20.17.16",
47
+ "@typescript-eslint/eslint-plugin": "^8.21.0",
48
+ "@typescript-eslint/parser": "^8.21.0",
49
+ "@vitejs/plugin-vue": "^5.2.1",
50
+ "@vue/eslint-config-prettier": "^10.2.0",
51
+ "@vue/eslint-config-typescript": "^14.3.0",
52
+ "@vue/test-utils": "^2.4.6",
53
+ "@vue/tsconfig": "^0.5.1",
54
+ "autoprefixer": "^10.4.20",
55
+ "concurrently": "^9.1.2",
56
+ "eslint": "^9.18.0",
57
+ "eslint-import-resolver-typescript": "^3.7.0",
58
+ "eslint-plugin-import": "^2.31.0",
59
+ "eslint-plugin-perfectionist": "^3.9.1",
60
+ "eslint-plugin-vue": "^9.32.0",
61
+ "http-server": "^14.1.1",
62
+ "husky": "^9.1.7",
63
+ "jsdom": "^25.0.1",
64
+ "lint-staged": "^15.4.2",
65
+ "lodash-es": "^4.17.21",
66
+ "npm-run-all2": "^6.2.6",
67
+ "playwright": "1.48.1",
68
+ "postcss-html": "^1.8.0",
69
+ "prettier": "^3.4.2",
70
+ "release-it": "^17.11.0",
71
+ "storybook": "^8.5.1",
72
+ "stylelint": "^16.13.2",
73
+ "stylelint-config-standard": "^36.0.1",
74
+ "stylelint-order": "^6.0.4",
75
+ "tsc-alias": "^1.8.10",
76
+ "tsx": "^4.19.2",
77
+ "typescript": "~5.6.3",
78
+ "typescript-eslint": "^8.21.0",
79
+ "vite": "^5.4.14",
80
+ "vitest": "^2.1.8",
81
+ "vue-tsc": "^2.2.0",
82
+ "wait-on": "^8.0.2"
83
+ },
84
+ "scripts": {
85
+ "dev": "vite",
86
+ "build": "run-p type-check \"build-only {@}\" --",
87
+ "storybook:dev": "storybook dev -p 6006 --ci",
88
+ "storybook:build": "storybook build -o ./dist-storybook",
89
+ "test:vitest": "vitest",
90
+ "test:storybook": "test-storybook",
91
+ "test:storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"http-server ./dist-storybook --port 6006 --silent\" \"wait-on tcp:6006 && pnpm run test:storybook\"",
92
+ "lint:code": "eslint ./**/*.{vue,ts,js} --fix",
93
+ "lint:style": "stylelint ./**/*.{vue,css} --fix --ignore-path .gitignore",
94
+ "lint:commit": "commitlint --edit",
95
+ "format": "prettier ./**/*.{vue,ts,js,css} --write --ignore-path .gitignore",
96
+ "build-only": "vite build",
97
+ "preview": "vite preview",
98
+ "type-check": "vue-tsc --build --force",
99
+ "lint-staged": "lint-staged",
100
+ "pre-commit": "pnpm lint:code & pnpm lint:style & pnpm format & pnpm test:vitest & pnpm test:storybook"
101
+ }
102
+ }