-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.37 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
{
"name": "@retailcrm/embed-ui",
"type": "module",
"version": "0.5.4",
"description": "API and components for creating RetailCRM UI extensions",
"repository": "[email protected]:retailcrm/embed-ui.git",
"author": "RetailDriverLLC <[email protected]>",
"license": "MIT",
"contributors": [
"Kirill Zaytsev <[email protected]>"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./dist/*": "./dist/*",
"./types/*": "./types/*"
},
"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"
},
"dependencies": {
"@omnicajs/vue-remote": "^0.2.3",
"@remote-ui/rpc": "^1.4.5",
"@retailcrm/embed-ui-v1-contexts": "^0.5.4",
"@retailcrm/embed-ui-v1-types": "^0.5.4"
},
"peerDependencies": {
"pinia": "^2.2",
"vue": "^3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.13.0",
"@retailcrm/embed-ui-v1-testing": "^0.5.4",
"@types/git-semver-tags": "^7.0.0",
"@types/node": "^22.7.9",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/language-server": "^2.1.10",
"@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",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.29.1",
"figures": "^6.1.0",
"git-semver-tags": "^7.0.1",
"glob": "^11.0.0",
"globals": "^15.11.0",
"jsdom": "^25.0.1",
"pinia": "^2.2.8",
"semver": "^7.6.3",
"stringify-package": "^1.0.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8",
"vue": "^3.5.12",
"yargs": "^17.7.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}