-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.49 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
{
"name": "@fastybird/vue-wamp-v1",
"version": "1.2.3",
"description": "WAMPv1 websockets client for VUE 3",
"keywords": [
"ws",
"wamp",
"websocket",
"websockets",
"sockets",
"vue",
"vue3",
"realtime"
],
"homepage": "https://github.com/FastyBird/vue-wamp-v1",
"bugs": "https://github.com/FastyBird/vue-wamp-v1/issues",
"license": "Apache-2.0",
"author": {
"name": "FastyBird s.r.o.",
"email": "[email protected]",
"url": "https://www.fastybird.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/FastyBird/vue-wamp-v1.git"
},
"main": "dist/vue-wamp-v1.umd.js",
"module": "dist/vue-wamp-v1.es.js",
"types": "dist/vue-wamp-v1.d.ts",
"exports": {
".": {
"import": "./dist/vue-wamp-v1.es.js",
"require": "./dist/vue-wamp-v1.umd.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"dev": "vite",
"serve": "vite preview",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build": "yarn clean && vue-tsc --noEmit --composite false && vite build",
"types": "vue-tsc --noEmit --composite false",
"lint:js": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src",
"lint:js:fix": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src --fix",
"pretty": "yarn pretty:write && yarn pretty:check",
"pretty:check": "prettier src --check",
"pretty:write": "prettier src --write"
},
"devDependencies": {
"@babel/core": "^7.20",
"@babel/plugin-proposal-class-properties": "^7.18",
"@babel/preset-env": "^7.20",
"@babel/preset-typescript": "^7.18",
"@commitlint/cli": "^17.2",
"@commitlint/config-conventional": "^17.2",
"@types/node": "^18.11",
"@typescript-eslint/eslint-plugin": "^5.42",
"@typescript-eslint/parser": "^5.42",
"@vitejs/plugin-vue": "^3.2",
"@vue/eslint-config-prettier": "^7.0",
"@vue/eslint-config-typescript": "^11.0",
"babel-loader": "^8.2.3",
"eslint": "^8.27",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-markdown": "^3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6",
"eslint-plugin-vue": "^9.7",
"prettier": "^2.7",
"rimraf": "^3.0",
"rollup-plugin-delete": "^2.0",
"typescript": "^4.8",
"vite": "^3.2",
"vite-plugin-dts": "^1.7.0",
"vite-plugin-eslint": "^1.8",
"vue": "^3.2",
"vue-loader": "^17.0",
"vue-tsc": "^1.4"
},
"peerDependencies": {
"vue": "^3.2"
},
"engines": {
"node": ">=14"
}
}