-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.56 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.56 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
{
"name": "@sanity/locales",
"version": "0.0.1",
"private": true,
"description": "Locales for the Sanity Studio",
"keywords": [
"locale",
"i18n",
"sanity"
],
"homepage": "https://github.com/sanity-io/locales#readme",
"bugs": {
"url": "https://github.com/sanity-io/locales/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sanity-io/locales.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"scripts": {
"autotranslate": "tsx src/cli/autoTranslate",
"build": "turbo run build",
"build:packages": "tsx src/cli/reconcilePackages",
"build:studio": "tsx src/cli/reconcileStudio",
"check": "npm run check:lint && npm run check:types",
"check:lint": "eslint .",
"check:missing": "tsx src/cli/listMissingResources",
"check:types": "tsc --noEmit",
"ci:adjust-labels": "tsx src/cli/adjustLabels",
"ci:auto-merge-stale": "tsx src/cli/autoMergeStale",
"ci:npm-stats": "tsx src/cli/npmStats",
"ci:nudge-stale": "tsx src/cli/nudgeStale",
"clean": "rimraf apps/studio/dist locales/*/dist",
"dev": "SANITY_STUDIO_DEBUG_I18N=log turbo run dev",
"format": "prettier --write .",
"list:maintainers": "tsx src/cli/printMaintainers",
"reconcile": "tsx src/cli/reconcile",
"test": "tsx test/testLocales",
"verify:maintainers": "tsx src/cli/verifyMaintainers"
},
"dependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@sanity/pkg-utils": "^7.11.9",
"@sanity/vision": "^5.13.0",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^22.0.0",
"ansi-colors": "^4.1.3",
"globby": "^14.0.2",
"js-yaml": "^4.1.1",
"json5": "^2.2.3",
"outdent": "^0.8.0",
"p-map": "^4.0.0",
"package-up": "^5.0.0",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^2.5.22",
"pretty-ms": "^7.0.1",
"sanity": "^5.13.0",
"tsx": "^4.19.4",
"zod": "^3.24.4",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-config-sanity": "^7.1.4",
"expect": "^29.7.0",
"openai": "^4.104.0",
"rimraf": "^5.0.10",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"packageManager": "pnpm@10.29.2",
"engines": {
"node": ">=22.0.0"
}
}