-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 2.27 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
94
{
"name": "@nuxtjs/sanity",
"version": "1.7.1",
"license": "MIT",
"repository": "nuxt-modules/sanity",
"description": "Sanity integration for Nuxt",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"sanity",
"sanity-io",
"cms"
],
"author": {
"name": "Daniel Roe <[email protected]>",
"url": "https://roe.dev"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./package.json": "./package.json",
"./runtime/*": "./dist/runtime/*"
},
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"docs:generate": "nuxi generate docs",
"prepare": "husky install",
"build": "nuxt-module-build",
"lint": "eslint --fix --ext .js,.ts,.vue .",
"prepublishOnly": "pnpm test",
"release": "bumpp && npm publish",
"test": "pnpm lint && pnpm vitest run",
"test:unit": "vitest run test/unit/*.test.*",
"test:e2e": "vitest run test/e2e/*.test.*"
},
"dependencies": {
"@nuxt/kit": "^3.4.2",
"@portabletext/types": "^2.0.0",
"chalk": "^5.2.0",
"defu": "^6.1.2",
"fs-extra": "^11.0.0",
"knitwork": "^1.0.0",
"ofetch": "^1.0.0",
"ohash": "^1.0.0",
"pathe": "^1.1.0"
},
"devDependencies": {
"@nuxt/module-builder": "0.3.1",
"@nuxt/schema": "3.4.3",
"@nuxt/test-utils": "3.4.3",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"@sanity/client": "6.0.1",
"@types/fs-extra": "11.0.1",
"@vitest/coverage-c8": "0.30.1",
"@vue/test-utils": "2.3.2",
"bumpp": "9.1.0",
"c8": "7.13.0",
"eslint": "8.39.0",
"happy-dom": "9.10.1",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"nuxi": "3.4.3",
"nuxt": "3.4.3",
"typescript": "5.0.4",
"vitest": "0.30.1",
"vue": "3.2.47"
},
"resolutions": {
"@nuxt/kit": "3.4.3",
"@nuxtjs/sanity": "link:.",
"@nuxtjs/tailwindcss": "^6.1.3"
},
"publishConfig": {
"access": "public"
},
"build": {
"externals": [
"@sanity/client"
]
},
"packageManager": "[email protected]"
}