-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.77 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.77 KB
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
134
{
"name": "@sanity-labs/sanity-plugin-workflows",
"version": "0.2.3",
"description": "Sanity Studio plugin for opinionated document workflows.",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/sanity-labs/sanity-plugin-workflows#readme",
"bugs": {
"url": "https://github.com/sanity-labs/sanity-plugin-workflows/issues"
},
"license": "MIT",
"author": "Sam Hemingway <sam.hemingway@sanity.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-labs/sanity-plugin-workflows.git"
},
"files": [
"dist",
"README.md",
"LICENSE",
"sanity.json",
"v2-incompatible.js"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"development": "./src/index.ts",
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./audit": {
"development": "./src/audit.ts",
"source": "./src/audit.ts",
"require": "./dist/audit.cjs",
"default": "./dist/audit.js"
},
"./actions": {
"development": "./src/actions.ts",
"source": "./src/actions.ts",
"require": "./dist/actions.cjs",
"default": "./dist/actions.js"
},
"./schema": {
"development": "./src/schema.ts",
"source": "./src/schema.ts",
"require": "./dist/schema.cjs",
"default": "./dist/schema.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./audit": {
"require": "./dist/audit.cjs",
"default": "./dist/audit.js"
},
"./actions": {
"require": "./dist/actions.cjs",
"default": "./dist/actions.js"
},
"./schema": {
"require": "./dist/schema.cjs",
"default": "./dist/schema.js"
},
"./package.json": "./package.json"
}
},
"scripts": {
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"format": "oxfmt package.json tsconfig.json tsconfig.dist.json tsconfig.settings.json package.config.cjs vitest.config.ts src v2-incompatible.js",
"format:check": "oxfmt --check package.json tsconfig.json tsconfig.dist.json tsconfig.settings.json package.config.cjs vitest.config.ts src v2-incompatible.js",
"link-watch": "plugin-kit link-watch",
"lint": "oxlint src vitest.config.ts",
"prepublishOnly": "npm run build",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@sanity-labs/workflow-kit": "^0.2.0",
"@sanity/icons": "^3.7.4",
"lucide-react": "^0.577.0"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@sanity/pkg-utils": "^10.4.13",
"@sanity/plugin-kit": "^4.0.20",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.0.4",
"@types/react": "^19.2.14",
"@typescript/native-preview": "7.0.0-dev.20260320.1",
"jsdom": "^26.1.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sanity": "^5.20.0",
"styled-components": "^6.4.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"peerDependencies": {
"@sanity/ui": "^3.1.11",
"react": "^19",
"sanity": ">=5 <6",
"styled-components": "^6"
},
"browserslist": [
"node >=20.20",
"baseline 2024"
],
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.32.1",
"sanityPlugin": {
"verifyPackage": {
"eslintImports": false,
"sanityV2Json": false,
"tsc": false
}
}
}