-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
127 lines (127 loc) · 3.55 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sanity-plugin-dashboard-widget-netlify",
"version": "2.0.1",
"description": "Sanity Studio Dashboard Widget for triggering Netlify builds",
"keywords": [
"sanity",
"plugin",
"dashboard",
"widget",
"netlify"
],
"homepage": "https://github.com/sanity-io/sanity-plugin-dashboard-widget-netlify#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-dashboard-widget-netlify/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/sanity-plugin-dashboard-widget-netlify.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"exports": {
".": {
"types": "./lib/src/index.d.ts",
"source": "./src/index.ts",
"import": "./lib/index.esm.js",
"require": "./lib/index.js",
"default": "./lib/index.esm.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"source": "./src/index.ts",
"types": "./lib/src/index.d.ts",
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"__test": "jest --coverage",
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
"build": "pkg-utils build --strict",
"clean": "rimraf lib",
"compile": "tsc --noEmit",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run compile && npm run build",
"test": "echo 'tests disabled for now'",
"test:prod": "npm run lint && npm run test -- --no-cache",
"test:watch": "jest --coverage --watch",
"watch": "pkg-utils watch"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^1.0.0",
"abort-controller": "^2.0.3",
"react-props-stream": "^1.0.1",
"rxjs": "^6.6.7"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@sanity/dashboard": "^3.0.0",
"@sanity/pkg-utils": "^1.17.2",
"@sanity/plugin-kit": "^2.1.5",
"@sanity/semantic-release-preset": "^2.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^18",
"react-dom": "^18",
"rimraf": "^3.0.2",
"sanity": "^3.0.0",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@sanity/dashboard": "^3.0.0",
"react": "^18",
"react-dom": "^18",
"sanity": "^3.0.0",
"styled-components": "^5.2"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"sanityPlugin": {
"verifyPackage": {
"babelConfig": false
}
}
}