-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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": "@bicou/nuxt-urql",
"version": "1.9.1",
"description": "Nuxt URQL module",
"license": "MIT",
"author": "Benjamin VIELLARD <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/gbicou/nuxt-urql.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"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/",
"release": "changeset publish"
},
"dependencies": {
"@nuxt/kit": "3.14.1592",
"@urql/core": "5.1.0",
"@urql/vue": "1.4.2"
},
"devDependencies": {
"@bicou/countries-server-schema": "1.6.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "3.15.1",
"@types/node": "22.10.2",
"@urql/exchange-execute": "2.3.0",
"defu": "6.1.4",
"eslint": "9.17.0",
"graphql": "16.10.0",
"nuxt": "3.14.1592",
"typescript": "5.6.3",
"vitest": "2.1.8"
},
"peerDependencies": {
"defu": "6.1.4",
"graphql": "16.10.0",
"vue": "3.5.13"
},
"packageManager": "[email protected]+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"publishConfig": {
"access": "public"
}
}