-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.23 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
109
110
{
"name": "sanity-plugin-netlify-deploy-status-badge",
"version": "1.0.0",
"description": "Display Netlify's status badge in Sanity Studio and your site's recent deploys. Plus, trigger a new build if you want to!",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/dorelljames/sanity-plugin-netlify-deploy-status-badge#readme",
"bugs": {
"url": "https://github.com/dorelljames/sanity-plugin-netlify-deploy-status-badge/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:dorelljames/sanity-plugin-netlify-deploy-status-badge.git"
},
"license": "MIT",
"author": "Dorell James <galangdj@gmail.com>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"build": "run-s clean && plugin-kit verify-package --silent && pkg-utils build --strict && pkg-utils --strict",
"watch": "pkg-utils watch --strict",
"prepublishOnly": "run-s build",
"clean": "rimraf dist",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@sanity/icons": "^2.4.1",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^1.7.4",
"date-fns": "^2.21.3",
"prop-types": "15.8.1",
"styled-components": "^6.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@sanity/eslint-config-no-v2-imports": "^0.0.1-studio-v3.3",
"@sanity/pkg-utils": "^2.3.9",
"@sanity/plugin-kit": "^3.1.7",
"@sanity/semantic-release-preset": "^4.1.2",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"@types/react": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-packagejson": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^5.0.1",
"sanity": "^3.14.4",
"styled-components": "^6.0.5",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=14"
},
"prettier": {
"semi": true
},
"eslintConfig": {
"parser": "sanipack/babel/eslint-parser",
"extends": [
"sanity",
"sanity/react",
"prettier"
]
},
"packageManager": "yarn@3.6.1"
}