-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
133 lines (133 loc) · 3.75 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
128
129
130
131
132
133
{
"name": "sanity-plugin-media",
"version": "2.3.2",
"description": "This version of `sanity-plugin-media` is for Sanity Studio V3.",
"keywords": [
"sanity",
"cms",
"headless",
"realtime",
"content",
"sanity-plugin",
"asset",
"browser"
],
"homepage": "https://github.com/sanity-io/sanity-plugin-media#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-media/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/sanity-plugin-media.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.js",
"node": {
"module": "./dist/index.esm.js",
"import": "./dist/index.cjs.mjs"
},
"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",
"clean": "rimraf dist",
"dev": "npm run watch",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@hookform/resolvers": "^3.1.1",
"@reduxjs/toolkit": "^1.9.0",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^1.9.3",
"@sanity/uuid": "^3.0.1",
"@tanem/react-nprogress": "^5.0.0",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.27.0",
"filesize": "^9.0.0",
"groq": "^3.0.0",
"is-hotkey": "^0.2.0",
"nanoid": "^3.3.3",
"npm-run-all": "^4.1.5",
"pluralize": "^8.0.0",
"react-dropzone": "^11.3.1",
"react-file-icon": "^1.1.0",
"react-hook-form": "^7.45.1",
"react-redux": "^7.2.2",
"react-select": "^5.3.2",
"react-virtuoso": "^4.3.11",
"redux": "^4.2.0",
"redux-observable": "^2.0.0",
"rxjs": "^7.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@sanity/client": "^6.7.0",
"@sanity/color": "^2.1.20",
"@sanity/icons": "^2.0.0",
"@sanity/pkg-utils": "^2.4.8",
"@sanity/plugin-kit": "^3.1.10",
"@sanity/semantic-release-preset": "^2.0.2",
"@types/is-hotkey": "^0.1.7",
"@types/pluralize": "^0.0.29",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-file-icon": "^1.0.1",
"@types/react-redux": "^7.1.24",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.27.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.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.2.0",
"standard-version": "^9.5.0",
"styled-components": "^5.3.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@sanity/ui": "^1.0 || ^2.0",
"react": "^18",
"react-dom": "^18",
"sanity": "^3.0.0",
"styled-components": "^5.0 || ^6.0"
},
"engines": {
"node": ">=14"
}
}