forked from sanity-io/sanity-plugin-workflow-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.06 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
{
"name": "sanity-plugin-workflow",
"version": "1.0.1",
"description": "A demonstration of a custom content publishing workflow using Sanity.",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/sanity-io/sanity-plugin-workflow#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-workflow/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/sanity-plugin-workflow.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"exports": {
".": {
"types": "./lib/index.d.ts",
"source": "./src/index.ts",
"require": "./lib/index.js",
"import": "./lib/index.esm.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/index.d.ts",
"files": [
"lib",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
"build": "run-s clean && plugin-kit verify-package --silent && pkg-utils build --strict && pkg-utils --strict",
"clean": "rimraf lib",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@hello-pangea/dnd": "^16.2.0",
"@sanity/icons": "^2.2.2",
"@sanity/incompatible-plugin": "^1.0.4",
"@tanstack/react-virtual": "^3.0.0-beta.54",
"@types/styled-components": "^5.1.26",
"framer-motion": "^10.6.1",
"groq": "^3.3.1",
"lexorank": "^1.0.5",
"react-fast-compare": "^3.2.1",
"sanity-plugin-utils": "^1.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@sanity/pkg-utils": "^2.2.4",
"@sanity/plugin-kit": "^3.1.4",
"@sanity/semantic-release-preset": "^4.0.1",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-packagejson": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^4.1.2",
"sanity": "^3.9.1",
"semantic-release": "^20.1.3",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@sanity/ui": "^1.2.2",
"react": "^18",
"sanity": "^3.0.0",
"styled-components": "^5.3.6"
},
"engines": {
"node": ">=14"
},
"sanityPlugin": {
"verifyPackage": {
"eslintImports": false
}
}
}