-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.77 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.77 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
{
"name": "@retailcrm/embed-ui",
"type": "module",
"version": "0.9.19",
"description": "API and components for creating RetailCRM UI extensions",
"repository": "git@github.com:retailcrm/embed-ui.git",
"author": "RetailDriverLLC <integration@retailcrm.ru>",
"license": "MIT",
"contributors": [
"Kirill Zaytsev <zaytsev.cmath10@gmail.com>"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./dist/*": "./dist/*",
"./types/*": "./types/*"
},
"bin": "./bin/embed-ui-update.mjs",
"types": "index.d.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:code && yarn build:meta",
"build:code": "vite build",
"build:meta": "npx tsx scripts/build.meta.ts",
"eslint": "eslint .",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage"
},
"peerDependencies": {
"pinia": "^2.2",
"vue": "^3.5"
},
"dependencies": {
"@floating-ui/core": "^1.6.9",
"@floating-ui/dom": "^1.6.13",
"@omnicajs/symfony-router": "^1.0.0",
"@omnicajs/vue-remote": "^0.2.23",
"@remote-ui/rpc": "^1.4.5",
"@retailcrm/embed-ui-v1-components": "^0.9.19",
"@retailcrm/embed-ui-v1-contexts": "^0.9.19",
"@retailcrm/embed-ui-v1-types": "^0.9.19"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@modulify/git-toolkit": "^0.0.2",
"@modulify/pkg": "^1.0.1",
"@omnicajs/eslint-plugin-dependencies": "^0.0.2",
"@retailcrm/embed-ui-v1-testing": "^0.9.19",
"@types/git-semver-tags": "^7.0.0",
"@types/node": "^22.19.2",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"@vitejs/plugin-vue": "^6.0.2",
"@vitest/coverage-istanbul": "4.1.3",
"@vue/language-server": "^3.1.8",
"@vue/test-utils": "^2.4.6",
"chalk": "^5.3.0",
"conventional-changelog": "^6.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"conventional-recommended-bump": "^10.0.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^10.8.0",
"figures": "^6.1.0",
"git-semver-tags": "^7.0.1",
"glob": "^13.0.0",
"globals": "^16.5.0",
"jsdom": "^27.3.0",
"pinia": "^2.2.8",
"semver": "^7.7.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vite": "^7.3.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.3",
"vue": "^3.5.32",
"vue-eslint-parser": "^10.4.0",
"yargs": "^17.7.2"
},
"resolutions": {
"handlebars": "^4.7.9"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.12.0"
}