This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
{
"name": "@nopr3d/vue-next-rx",
"version": "1.0.12",
"description": "RxJs for Vue 3",
"author": "Boucham Amine",
"license": "MIT",
"bugs": {
"url": "https://github.com/NOPR9D/vue-next-rx/issues"
},
"homepage": "https://github.com/NOPR9D/vue-next-rx#readme",
"main": "dist/vue-next-rx.js",
"module": "dist/vue-next-rx.esm.js",
"sideEffects": false,
"files": [
"types/*.d.ts"
],
"typings": "types/index.d.ts",
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"publish": "npm publish --access public",
"lint": "eslint src test example",
"dev:test": "jest --watch",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-buble": "^0.21.3",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.12",
"buble": "^0.20.0",
"eslint": "^7.2.0",
"eslint-plugin-vue": "^7.2.0",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rollup": "^2.34.2",
"rxjs": "^7.0.0",
"typescript": "^2.8.2",
"vue": "^3.2.0"
},
"peerDependencies": {
"rxjs": "^7.0.0",
"vue": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NOPR9D/vue-next-rx.git"
},
"keywords": [
"vue",
"vue 3",
"vue3",
"vue next",
"rx",
"rxjs",
"composition-api",
"composition",
"pure",
"hooks",
"store",
"support"
]
}