-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.73 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.73 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@retailcrm/embed-ui",
"type": "module",
"version": "0.9.32-beta.1",
"description": "API and components for creating RetailCRM UI extensions",
"repository": {
"type": "git",
"url": "git+ssh://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.mjs",
"files": [
"bin",
"dist",
"index.d.ts",
"types",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"types": "index.d.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:code && yarn build:meta",
"build:code": "yarn build:lib && yarn build:bin",
"build:lib": "vite build",
"build:bin": "vite build -c vite.config.bin.ts",
"build:meta": "npx tsx scripts/build.meta.ts",
"eslint": "eslint .",
"release": "conventional-release --tags",
"release:alpha": "conventional-release --prerelease alpha --tags",
"release:beta": "conventional-release --prerelease beta --tags",
"release:dry": "conventional-release --dry --verbose --tags",
"release:rc": "conventional-release --prerelease rc --tags",
"test": "vitest run",
"test:browser": "yarn workspace @retailcrm/embed-ui-v1-components test:browser && yarn workspace @retailcrm/embed-ui-v1-endpoint test:browser && yarn workspace @retailcrm/embed-ui-v1-sandbox test:browser",
"test:e2e": "yarn workspace @retailcrm/embed-ui-v1-sandbox test:e2e",
"test:typecheck": "vitest run -c vitest.config.typecheck.ts"
},
"release": {
"mode": "sync",
"tagPrefix": "v"
},
"peerDependencies": {
"pinia": "^2.2",
"vue": "^3.5"
},
"dependencies": {
"@floating-ui/core": "^1.6.9",
"@floating-ui/dom": "^1.6.13",
"@inquirer/prompts": "^8.4.3",
"@omnicajs/symfony-router": "^1.0.0",
"@omnicajs/vue-remote": "^0.2.26",
"@remote-ui/rpc": "^1.4.5",
"@retailcrm/embed-ui-v1-components": "^0.9.32-beta.1",
"@retailcrm/embed-ui-v1-contexts": "^0.9.32-beta.1",
"@retailcrm/embed-ui-v1-endpoint": "^0.9.32-beta.1",
"@retailcrm/embed-ui-v1-types": "^0.9.32-beta.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@modulify/conventional-git": "^0.1.3",
"@modulify/conventional-release": "^0.1.3",
"@modulify/pkg": "^1.0.1",
"@omnicajs/eslint-plugin-dependencies": "^0.0.2",
"@retailcrm/embed-ui-v1-testing": "^0.9.32-beta.1",
"@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.10",
"@vue/language-server": "^3.1.8",
"@vue/test-utils": "^2.4.6",
"chalk": "^5.3.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",
"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.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "4.1.10",
"vue": "^3.5.32",
"vue-eslint-parser": "^10.4.0"
},
"resolutions": {
"ajv@npm:^6.12.4": "6.15.0",
"handlebars": "^4.7.9",
"js-cookie": "^3.0.8",
"qs": "^6.15.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.12.0"
}