-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
{
"name": "@bicou/nuxt-urql",
"version": "1.11.4",
"description": "Nuxt URQL module",
"license": "MIT",
"author": "Benjamin VIELLARD <bicou@bicou.com>",
"repository": {
"type": "git",
"url": "https://github.com/gbicou/nuxt-urql.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"default": "./dist/module.mjs"
}
},
"main": "dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"prepare": "nuxi prepare playground",
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"dev:build": "nuxi build playground",
"dev:start": "nuxi start playground",
"build": "nuxt-module-build build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"clean": "rimraf dist/ playground/.nuxt/ playground/.output/ playground/node_modules/.vite/"
},
"dependencies": {
"@urql/core": "^6.0.0",
"@urql/vue": "^2.0.0"
},
"devDependencies": {
"@bicou/countries-server-schema": "1.7.2",
"@nuxt/kit": "4.4.8",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.4.8",
"@nuxt/test-utils": "4.0.3",
"@types/node": "24.13.2",
"@urql/exchange-execute": "3.0.0",
"defu": "6.1.7",
"eslint": "10.5.0",
"graphql": "16.14.2",
"nuxt": "4.4.8",
"typescript": "5.9.3",
"vitest": "4.1.9"
},
"peerDependencies": {
"defu": "^6.1.4",
"graphql": "^16.10.0",
"vue": "^3.5.20"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"publishConfig": {
"access": "public"
}
}