-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 1.93 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
{
"name": "vue-sanity",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "Sanity integration for Vue",
"author": {
"name": "Daniel Roe <[email protected]>",
"url": "https://github.com/danielroe"
},
"license": "MIT",
"repository": "danielroe/vue-sanity",
"keywords": [
"vue",
"vuejs",
"nuxt",
"sanity",
"composition-api",
"typescript",
"javascript"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"!**/*.map",
"dist/**/*",
"dist/index.d.ts"
],
"scripts": {
"build": "unbuild",
"lint": "pnpm eslint .",
"prepare": "pnpm build && husky",
"release": "bumpp && npm publish",
"test": "vitest --typecheck",
"test:types": "tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"@sanity/client": "^6.21.3",
"@sanity/image-url": "^1.0.2",
"minify-groq": "^1.0.0",
"sanity-typed-queries": "^0.9.5"
},
"devDependencies": {
"@antfu/eslint-config": "3.0.0",
"@types/memory-fs": "0.3.7",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"@vitest/coverage-v8": "3.0.2",
"@vue/composition-api": "1.7.2",
"@vue/test-utils": "2.4.6",
"bumpp": "9.5.2",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.18.0",
"expect-type": "1.0.0",
"flush-promises": "1.0.2",
"happy-dom": "16.6.0",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"memory-fs": "0.5.0",
"semver": "7.6.3",
"typescript": "5.7.2",
"unbuild": "3.0.0",
"vite": "6.0.10",
"vitest": "3.0.2",
"vue": "3.5.13"
},
"resolutions": {
"minimist": ">=1.2.8"
}
}