-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.73 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.73 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
{
"name": "@sanity/cli-monorepo",
"version": "0.0.1",
"private": true,
"description": "Command line tool monorepo for Sanity",
"keywords": [
"cli",
"sanity"
],
"homepage": "https://github.com/sanity-io/cli#readme",
"bugs": {
"url": "https://github.com/sanity-io/cli/issues"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sanity-io/cli.git"
},
"type": "module",
"scripts": {
"build": "turbo run build build:types",
"build:cli": "turbo run build build:types --filter=./packages/**",
"changeset": "changeset",
"check": "npm run check:format && npm run check:lint && npm run check:types && npm run check:deps",
"check:deps": "knip",
"check:format": "oxfmt --check",
"check:lint": "turbo run lint -- --fix",
"check:types": "turbo run check:types --filter=@sanity/cli --filter=@sanity/cli-core --filter=@sanity/cli-e2e",
"clean": "rimraf packages/@sanity/*/lib packages/*/lib packages/@sanity/*/dist packages/*/dist",
"clean:deps": "rimraf packages/*/node_modules fixtures/*/node_modules node_modules",
"depcheck": "knip",
"dev": "turbo run dev",
"docs:upload": "pnpm --filter=@repo/upload-docs run update",
"format": "oxfmt",
"pre:enter": "changeset pre enter",
"pre:exit": "changeset pre exit",
"prepare": "husky",
"publint": "turbo run publint",
"publish-packages": "changeset publish",
"release": "pnpm build:cli && pnpm publish-packages",
"pretest": "pnpm run build:cli",
"test": "vitest run",
"pretest:e2e": "pnpm run build:cli",
"test:e2e": "pnpm --filter @sanity/cli-e2e test",
"pretest:watch": "pnpm run build:cli",
"test:watch": "vitest",
"version-packages": "changeset version && node .changeset/postversion.mjs",
"watch:cli": "turbo run watch --filter=@sanity/cli --filter=@sanity/cli*"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@commitlint/types": "^20.4.0",
"@eslint/compat": "catalog:",
"@sanity/eslint-config-cli": "workspace:*",
"@vitest/coverage-istanbul": "catalog:",
"eslint": "catalog:",
"husky": "^9.1.7",
"knip": "^6.0.6",
"lint-staged": "^16.4.0",
"oxfmt": "catalog:",
"rimraf": "catalog:",
"turbo": "^2.8.20",
"typescript": "catalog:",
"vitest": "catalog:"
},
"resolutions": {
"@sanity/client": "^7.22.0"
},
"engines": {
"node": ">=20.19.1 <22 || >=22.12"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"node-pty"
],
"overrides": {
"@sanity/cli": "workspace:*"
}
}
}