-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
93 lines (93 loc) · 2.58 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
{
"name": "vue-query",
"version": "1.0.0-semantic",
"description": "Hooks for fetching, caching and updating asynchronous data in Vue",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"/devtools",
"/nuxt",
"/lib",
"/esm",
"/types"
],
"scripts": {
"prepare": "husky install",
"build": "rollup -c rollup.config.ts",
"watch": "rollup -c rollup.config.ts -w",
"lint": "eslint ./src/**/*.{ts,vue}",
"test": "npm run test:2 && npm run test:3",
"test:2": "vue-demi-switch 2 vue2 && jest",
"test:3": "vue-demi-switch 3 && jest",
"prettier": "prettier . --write",
"verify": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamianOsipiuk/vue-query.git"
},
"keywords": [
"vue",
"query",
"vue-query",
"vue-react-query",
"server-cache"
],
"author": "Damian Osipiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamianOsipiuk/vue-query/issues"
},
"homepage": "https://github.com/DamianOsipiuk/vue-query#readme",
"dependencies": {
"@vue/devtools-api": "^6.1.4",
"match-sorter": "^6.3.1",
"react-query": "^3.39.0",
"vue-demi": "0.10.1"
},
"peerDependencies": {
"@nuxtjs/composition-api": "^0.28.0",
"@vue/composition-api": "^1.1.2",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
},
"@nuxtjs/composition-api": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nuxtjs/composition-api": "^0.32.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vue/compiler-sfc": "^3.2.31",
"@vue/composition-api": "^1.4.9",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/vue3-jest": "27.0.0-alpha.4",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"vue": "^3.2.31",
"vue2": "npm:vue@2"
}
}