-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.03 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.03 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
{
"name": "@sanity/codegen",
"version": "6.0.1",
"description": "Codegen toolkit for Sanity.io",
"keywords": [
"sanity",
"cms",
"headless",
"realtime",
"content",
"codegen"
],
"homepage": "https://www.sanity.io/",
"bugs": {
"url": "https://github.com/sanity-io/codegen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/codegen.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"source": "./src/_exports/index.ts",
"default": "./dist/_exports/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/_exports/index.js",
"types": "./dist/_exports/index.d.ts",
"files": [
"dist",
"oclif.manifest.json",
"oclif.config.js",
"babel.config.json"
],
"scripts": {
"build": "swc --delete-dir-on-start src -d dist --strip-leading-paths --ignore '**/__tests__/**' && pnpm run build:types",
"postbuild": "oclif manifest",
"build:types": "pkg-utils build --emitDeclarationOnly",
"clean": "rimraf dist coverage",
"lint": "eslint . --fix",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"pretest": "pnpm build",
"test": "vitest",
"watch": "swc src -d dist --strip-leading-paths --watch"
},
"dependencies": {
"@babel/core": "^7.28.6",
"@babel/generator": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.6",
"@babel/traverse": "^7.28.6",
"@babel/types": "^7.28.6",
"@sanity/worker-channels": "^2.0.0",
"chokidar": "^4.0.3",
"debug": "^4.4.3",
"globby": "^11.1.0",
"groq": "^5.11.0",
"groq-js": "^1.27.1",
"json5": "^2.2.3",
"lodash-es": "^4.17.23",
"prettier": "^3.8.1",
"reselect": "^5.1.1",
"tsconfig-paths": "^4.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@sanity/cli-core": "^1.0.0",
"@sanity/cli-test": "^0.2.0",
"@sanity/eslint-config-cli": "^1.0.0",
"@sanity/pkg-utils": "^10.4.6",
"@sanity/telemetry": "^0.8.1",
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.8",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__register": "^7.17.3",
"@types/babel__traverse": "^7.28.0",
"@types/debug": "^4.1.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.35",
"@vitest/coverage-istanbul": "^4.0.18",
"eslint": "^9.39.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"oclif": "^4.22.85",
"prettier-plugin-packagejson": "^2.5.22",
"rimraf": "^5.0.10",
"tinyglobby": "^0.2.15",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@oclif/core": "^4.8.0",
"@sanity/cli-core": "^1",
"@sanity/telemetry": "^0.8.1"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20.19 <22 || >=22.12"
},
"publishConfig": {
"access": "public"
}
}