-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.34 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.34 KB
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
109
110
111
112
113
114
115
116
117
118
119
{
"name": "sanity-plugin-dashboard-widget-vercel",
"version": "3.1.6",
"description": "View your recent Vercel deployments and manually trigger builds directly from your Sanity dashboard.",
"keywords": [
"sanity",
"plugin",
"dashboard",
"widget",
"vercel"
],
"type": "commonjs",
"homepage": "https://github.com/sanity-io/sanity-plugin-dashboard-widget-vercel#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-dashboard-widget-vercel/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:sanity-io/sanity-plugin-dashboard-widget-vercel.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"dev": "sanity dev",
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch --strict"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@hookform/resolvers": "^4.0.0",
"@sanity/icons": "^3.7.0",
"@sanity/incompatible-plugin": "^1.0.5",
"@sanity/ui": "^2.15.2",
"@sanity/uuid": "^3.0.2",
"@tanstack/react-query": "^5.67.2",
"@xstate/react": "^5.0.2",
"javascript-time-ago": "^2.5.7",
"object-hash": "3.0.0",
"react-hook-form": "^7.48.2",
"react-time-ago": "^7.2.1",
"use-deep-compare-effect": "^1.8.1",
"xstate": "^5.19.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@sanity/client": "^6.28.3",
"@sanity/dashboard": "^4.1.3",
"@sanity/pkg-utils": "^7.0.4",
"@sanity/plugin-kit": "^4.0.19",
"@sanity/semantic-release-preset": "^2.0.5",
"@sanity/vision": "^3.79.0",
"@types/node-fetch": "^2.6.12",
"@types/object-hash": "^2.2.1",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.0.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.5.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.0.0",
"rimraf": "^3.0.2",
"sanity": "^3.79.0",
"styled-components": "^6.1.15",
"typescript": "5.7.3"
},
"peerDependencies": {
"@sanity/dashboard": "^4 || ^5",
"react": "^18.3 || ^19.2",
"react-dom": "^18.3 || ^19.2",
"sanity": "^3 || ^4 || ^5",
"styled-components": "^6.1"
},
"engines": {
"node": ">=18"
}
}