-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
executable file
·108 lines (108 loc) · 2.74 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@nuxtjs/sanity",
"version": "1.12.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/sanity.git"
},
"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 build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"studio:build": "pnpm --filter nuxt-sanity-cms build",
"docs:generate": "nuxi generate docs",
"prepare": "simple-git-hooks",
"build": "nuxt-module-build build",
"lint": "eslint --fix .",
"prepublishOnly": "pnpm test",
"release": "bumpp && npm publish",
"test": "pnpm lint && pnpm vitest run --coverage",
"test:types": "vue-tsc --noEmit",
"test:unit": "vitest run test/unit/*.test.*",
"test:e2e": "vitest run test/e2e/*.test.*"
},
"dependencies": {
"@nuxt/kit": "^3.14.159",
"@portabletext/types": "^2.0.13",
"@sanity/client": "^6.22.4",
"@sanity/core-loader": "^1.7.9",
"@sanity/preview-url-secret": "^2.0.3",
"@sanity/visual-editing": "^2.6.0",
"chalk": "^5.3.0",
"defu": "^6.1.4",
"jiti": "^2.4.0",
"knitwork": "^1.1.0",
"magic-regexp": "^0.8.0",
"mlly": "^1.7.3",
"ofetch": "^1.4.1",
"ohash": "^1.1.4",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/eslint-config": "0.7.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "3.14.4",
"@vitest/coverage-v8": "2.1.5",
"@vue/test-utils": "2.4.6",
"bumpp": "9.8.1",
"eslint": "9.15.0",
"h3": "1.13.0",
"happy-dom": "15.11.6",
"lint-staged": "15.2.10",
"nuxi": "3.15.0",
"nuxt": "3.14.1592",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"vitest": "2.1.5",
"vitest-environment-nuxt": "1.0.1",
"vue": "3.5.13",
"vue-router": "4.4.5",
"vue-tsc": "2.1.10"
},
"resolutions": {
"@nuxtjs/sanity": "link:.",
"nuxt-component-meta": "0.9.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"publishConfig": {
"access": "public"
},
"build": {
"externals": [
"@sanity/client"
]
},
"packageManager": "[email protected]"
}