-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.07 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
{
"name": "@peterbud/nuxt-query",
"version": "0.0.5",
"description": "Nuxt integration for Tanstack Query",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterbud/nuxt-query.git"
},
"author": "Peter Budai",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"keywords": [
"vue",
"nuxt",
"query",
"nuxt-module",
"tanstack",
"tanstack-query",
"vue-query"
],
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build prepare && nuxt-module-build build && pnpm build:client",
"build:client": "nuxi generate client",
"dev": "nuxi dev playground",
"dev:client": "concurrently \"nuxi dev client --port 3300\" \"nuxi dev playground\"",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm lint && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/devtools-kit": "^2.2.1",
"@nuxt/devtools-ui-kit": "^2.2.1",
"@nuxt/kit": "^3.15.4",
"@tanstack/vue-query": "^5.67.1",
"defu": "^6.1.4",
"sirv": "^3.0.1"
},
"devDependencies": {
"@nuxt/devtools": "^2.2.1",
"@nuxt/eslint-config": "^1.1.0",
"@nuxt/module-builder": "1.0.0-alpha.1",
"@nuxt/schema": "^3.15.4",
"@nuxt/test-utils": "^3.17.1",
"@types/node": "latest",
"@unocss/nuxt": "^66.0.0",
"changelogen": "^0.6.1",
"concurrently": "^9.1.2",
"eslint": "^9.21.0",
"nuxt": "^3.15.4",
"typescript": "~5.8.2",
"vitest": "^3.0.7",
"vue-tsc": "^2.2.8"
},
"packageManager": "[email protected]"
}