@sanity/dashboard 3.0.0-v3-studio.6 → 3.0.0-v3-studio.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +42 -46
package/package.json
CHANGED
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/dashboard",
|
|
3
|
-
"version": "3.0.0-v3-studio.
|
|
3
|
+
"version": "3.0.0-v3-studio.8",
|
|
4
4
|
"description": "Tool for rendering dashboard widgets",
|
|
5
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"sanity",
|
|
7
|
+
"cms",
|
|
8
|
+
"headless",
|
|
9
|
+
"realtime",
|
|
10
|
+
"content",
|
|
11
|
+
"dashboard",
|
|
12
|
+
"sanity-plugin",
|
|
13
|
+
"sanity-tool"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/sanity-io/dashboard#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/sanity-io/dashboard/issues"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git@github.com:sanity-io/dashboard.git"
|
|
22
|
+
},
|
|
6
23
|
"license": "MIT",
|
|
7
|
-
"
|
|
24
|
+
"author": "Sanity.io <hello@sanity.io>",
|
|
8
25
|
"exports": {
|
|
9
26
|
".": {
|
|
10
27
|
"types": "./lib/src/index.d.ts",
|
|
@@ -12,10 +29,12 @@
|
|
|
12
29
|
"import": "./lib/index.esm.js",
|
|
13
30
|
"require": "./lib/index.js",
|
|
14
31
|
"default": "./lib/index.esm.js"
|
|
15
|
-
}
|
|
32
|
+
},
|
|
33
|
+
"./package.json": "./package.json"
|
|
16
34
|
},
|
|
17
35
|
"main": "./lib/index.js",
|
|
18
36
|
"module": "./lib/index.esm.js",
|
|
37
|
+
"source": "./src/index.ts",
|
|
19
38
|
"types": "./lib/src/index.d.ts",
|
|
20
39
|
"files": [
|
|
21
40
|
"src",
|
|
@@ -24,44 +43,32 @@
|
|
|
24
43
|
"sanity.json"
|
|
25
44
|
],
|
|
26
45
|
"scripts": {
|
|
27
|
-
"clean": "rimraf lib",
|
|
28
46
|
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
|
|
29
|
-
"build": "pkg-utils build",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
47
|
+
"build": "pkg-utils build --strict",
|
|
48
|
+
"clean": "rimraf lib",
|
|
49
|
+
"compile": "tsc --noEmit",
|
|
32
50
|
"format": "prettier src -w",
|
|
51
|
+
"link-watch": "plugin-kit link-watch",
|
|
52
|
+
"lint": "eslint .",
|
|
33
53
|
"prepare": "husky install",
|
|
34
|
-
"compile": "tsc --noEmit",
|
|
35
54
|
"prepublishOnly": "npm run build",
|
|
36
|
-
"
|
|
55
|
+
"watch": "pkg-utils watch"
|
|
37
56
|
},
|
|
38
|
-
"keywords": [
|
|
39
|
-
"sanity",
|
|
40
|
-
"cms",
|
|
41
|
-
"headless",
|
|
42
|
-
"realtime",
|
|
43
|
-
"content",
|
|
44
|
-
"dashboard",
|
|
45
|
-
"sanity-plugin",
|
|
46
|
-
"sanity-tool"
|
|
47
|
-
],
|
|
48
57
|
"dependencies": {
|
|
49
|
-
"@sanity/icons": "
|
|
58
|
+
"@sanity/icons": "1.3.9-beta.3",
|
|
50
59
|
"@sanity/image-url": "^1.0.1",
|
|
51
60
|
"@sanity/incompatible-plugin": "^1.0.4",
|
|
52
|
-
"@sanity/ui": "
|
|
61
|
+
"@sanity/ui": "1.0.0-beta.32",
|
|
53
62
|
"lodash": "^4.17.21",
|
|
54
|
-
"rxjs": "^6.
|
|
63
|
+
"rxjs": "^6.6.7"
|
|
55
64
|
},
|
|
56
65
|
"devDependencies": {
|
|
57
66
|
"@commitlint/cli": "^17.2.0",
|
|
58
67
|
"@commitlint/config-conventional": "^17.2.0",
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@sanity/pkg-utils": "^1.16.2",
|
|
62
|
-
"@sanity/plugin-kit": "^2.0.6",
|
|
68
|
+
"@sanity/pkg-utils": "^1.17.2",
|
|
69
|
+
"@sanity/plugin-kit": "^2.1.3",
|
|
63
70
|
"@sanity/semantic-release-preset": "^2.0.2",
|
|
64
|
-
"@types/styled-components": "^5.1.
|
|
71
|
+
"@types/styled-components": "^5.1.26",
|
|
65
72
|
"@typescript-eslint/eslint-plugin": "^5.42.0",
|
|
66
73
|
"@typescript-eslint/parser": "^5.42.0",
|
|
67
74
|
"eslint": "^8.26.0",
|
|
@@ -72,32 +79,21 @@
|
|
|
72
79
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
73
80
|
"husky": "^8.0.1",
|
|
74
81
|
"lint-staged": "^13.0.3",
|
|
75
|
-
"parcel": "^2.7.0",
|
|
76
82
|
"prettier": "^2.7.1",
|
|
77
|
-
"
|
|
83
|
+
"prettier-plugin-packagejson": "^2.3.0",
|
|
84
|
+
"react": "^18",
|
|
78
85
|
"rimraf": "^3.0.2",
|
|
79
86
|
"sanity": "dev-preview || 3.0.0-rc.0",
|
|
80
|
-
"styled-components": "^5.3.
|
|
87
|
+
"styled-components": "^5.3.6",
|
|
81
88
|
"typescript": "^4.8.4"
|
|
82
89
|
},
|
|
83
90
|
"peerDependencies": {
|
|
84
|
-
"react": "^18
|
|
91
|
+
"react": "^18",
|
|
85
92
|
"sanity": "dev-preview || 3.0.0-rc.0",
|
|
86
93
|
"styled-components": "^5.2.0"
|
|
87
94
|
},
|
|
88
|
-
"repository": {
|
|
89
|
-
"type": "git",
|
|
90
|
-
"url": "git@github.com:sanity-io/dashboard.git"
|
|
91
|
-
},
|
|
92
|
-
"sanityExchangeUrl": "https://www.sanity.io/exchange/dashboard",
|
|
93
|
-
"bugs": {
|
|
94
|
-
"url": "https://github.com/sanity-io/dashboard/issues"
|
|
95
|
-
},
|
|
96
|
-
"homepage": "https://github.com/sanity-io/dashboard#readme",
|
|
97
|
-
"directories": {
|
|
98
|
-
"lib": "lib"
|
|
99
|
-
},
|
|
100
95
|
"engines": {
|
|
101
|
-
"node": ">=14
|
|
102
|
-
}
|
|
96
|
+
"node": ">=14"
|
|
97
|
+
},
|
|
98
|
+
"sanityExchangeUrl": "https://www.sanity.io/exchange/dashboard"
|
|
103
99
|
}
|