forked from nuxt-modules/sanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·96 lines (96 loc) · 2.32 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
{
"name": "@nuxtjs/sanity",
"version": "0.9.4",
"description": "Sanity integration for Nuxt.js",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"sanity",
"sanity-io",
"cms"
],
"repository": "nuxt-community/sanity-module",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.es.js"
},
"./module": {
"require": "./dist/module.js",
"import": "./dist/module.es.js"
},
"./": "./",
"./sanity-content": "./dist/components/sanity-content.js",
"./sanity-file": "./dist/components/sanity-file.js",
"./sanity-image": "./dist/components/sanity-image.js"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"module.js",
"dist",
"vetur",
"templates"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt example",
"lint": "eslint --fix --ext .js,.ts,.vue .",
"prepare": "husky install && yarn build",
"prepublishOnly": "yarn test",
"test": "yarn lint && jest"
},
"dependencies": {
"@nuxt/kit": "0.6.4",
"chalk": "4.1.2",
"consola": "2.15.3",
"defu": "5.0.0",
"fs-extra": "9.1.0",
"upath": "2.0.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.9",
"@babel/preset-typescript": "7.14.5",
"@nuxt/test-utils": "0.2.2",
"@nuxt/types": "2.15.7",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/eslint-config-typescript": "6.0.1",
"@nuxtjs/tailwindcss": "4.2.1",
"@release-it/conventional-changelog": "3.0.1",
"@sanity/client": "2.13.0",
"@types/fs-extra": "9.0.12",
"@types/jest": "26.0.24",
"@types/webpack-env": "1.16.2",
"@vue/test-utils": "1.2.2",
"babel-jest": "27.0.6",
"eslint": "7.32.0",
"husky": "7.0.1",
"jest": "27.0.6",
"jest-serializer-vue-tjw": "3.18.0",
"lint-staged": "11.1.1",
"nuxt": "2.15.7",
"playwright": "1.13.1",
"release-it": "14.10.1",
"siroc": "0.14.0",
"ts-loader": "8.3.0"
},
"peerDependencies": {
"chalk": "^3.0.0",
"consola": "^2.15.0"
},
"publishConfig": {
"access": "public"
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"volta": {
"node": "12.22.4"
}
}