-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.9 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
{
"name": "sanity-plugin-asset-source-stock-images",
"version": "1.2.0",
"description": "Download stock images from Unsplash, Pexels, Pixabay",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/reywright/sanity-plugin-asset-source-stock-images#readme",
"bugs": {
"url": "https://github.com/reywright/sanity-plugin-asset-source-stock-images/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/reywright/sanity-plugin-asset-source-stock-images.git"
},
"license": "MIT",
"author": "Silouan Wright <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.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",
"clean": "rimraf dist",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict",
"prepare": "husky install"
},
"dependencies": {
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/studio-secrets": "^2.0.2",
"@sanity/ui": "^1.0.9",
"@tanstack/react-query": "4.22.0",
"lucide-react": "^0.105.0-alpha.4",
"pexels": "^1.4.0",
"qs": "^6.11.0",
"react-grid-gallery": "^1.0.0",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@sanity/pkg-utils": "^2.1.1",
"@sanity/plugin-kit": "^3.1.2",
"@sanity/semantic-release-preset": "^3.0.2",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.26",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^3.0.2",
"sanity": "^3.1.4",
"styled-components": "^5.3.6",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"sanity": "^3",
"styled-components": "^5.2"
},
"engines": {
"node": ">=14"
}
}