-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "vue3-rsocket",
"version": "0.3.1",
"description": "Vue3 library for rsocket-js https://github.com/rsocket/rsocket-js",
"main": "dist/vue3-rsocket.js",
"typings": "dist/vue3-rsocket.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nexiles/vue3-rsocket"
},
"author": "nexiles GmbH",
"contributors": [
{
"name": "Jakob Huber",
"email": "jakob.huber@nexiles.com",
"url": "https://github.com/gh7531"
},
{
"name": "Samuel Frei",
"email": "samuel.frei@nexiles.com",
"url": "https://github.com/s-frei/"
}
],
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist/",
"dev": "rollup --config rollup.config.js --watch --dev",
"build": "rollup --config rollup.config.js",
"build-dev": "rollup --config rollup.config.js --dev",
"clean-build": "yarn clean && yarn build",
"clean-build-dev": "yarn clean && yarn build-dev"
},
"files": [
"dist"
],
"dependencies": {
"rsocket-websocket-client": "^0.0.27"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^18.0.6",
"@types/rsocket-core": "^0.0.7",
"@types/rsocket-websocket-client": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "2.7.1",
"rollup": "^2.77.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}