-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.27 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
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
{
"name": "@omnicajs/vue-remote",
"type": "module",
"description": "Proxy renderer for Vue.js based on @remote-ui",
"license": "MIT",
"version": "0.2.4",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.cjs",
"import": "./index.mjs",
"default": "./index.mjs"
},
"./host": {
"types": "./dist/host.d.ts",
"require": "./dist/host.cjs",
"import": "./dist/host.mjs",
"default": "./dist/host.mjs"
},
"./remote": {
"types": "./dist/remote.d.ts",
"require": "./dist/remote.cjs",
"import": "./dist/remote.mjs",
"default": "./dist/remote.mjs"
}
},
"sideEffects": false,
"typesVersions": {
"*": {
"host": [
"./dist/host.d.ts"
],
"remote": [
"./dist/remote.d.ts"
]
}
},
"scripts": {
"build": "vite build",
"e2e:build": "node ./tests/e2e/rollup.build.mjs",
"e2e:serve": "node ./tests/e2e/server.mjs",
"e2e:test": "npx playwright test",
"test": "vitest run ./tests/unit ./tests/integration",
"test:coverage": "vitest run --coverage ./tests/unit ./tests/integration",
"test:watch": "vitest ./tests/unit ./tests/integration",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"@remote-ui/rpc": "^1.4.5"
},
"peerDependencies": {
"vue": "^3.4.15"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@playwright/test": "^1.41.2",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.19.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-istanbul": "^2.1.6",
"@vue/compiler-sfc": "^3.4.15",
"@vue/language-server": "^2.1.10",
"cors": "^2.8.5",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"eslint-plugin-vue": "^9.22.0",
"express": "^4.21.1",
"jsdom": "^24.0.0",
"playwright": "^1.41.2",
"rollup": "^4.24.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"v8-to-istanbul": "^9.2.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.5",
"vue": "^3.4.15"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vue",
"Vue.js",
"remote",
"remote-ui",
"extension",
"extending",
"embed",
"embedding"
],
"contributors": [
"Zaitsev Kirill <[email protected]>"
],
"homepage": "https://github.com/omnicajs/vue-remote",
"repository": {
"type": "git",
"url": "https://github.com/omnicajs/vue-remote.git"
}
}