-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
{
"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://[email protected]/sanity-io/locales.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"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: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"
},
"dependencies": {
"@babel/generator": "^7.26.8",
"@babel/traverse": "^7.26.8",
"@babel/types": "^7.26.8",
"@sanity/pkg-utils": "^7.0.4",
"@sanity/vision": "^3.78.1",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^18.19.75",
"ansi-colors": "^4.1.3",
"globby": "^14.0.2",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"magicast": "^0.3.5",
"outdent": "^0.8.0",
"p-map": "^4.0.0",
"package-up": "^5.0.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"pretty-ms": "^7.0.1",
"sanity": "^3.78.1",
"tsx": "^4.19.2",
"zod": "^3.24.1",
"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.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.1.3",
"expect": "^29.7.0",
"openai": "^4.78.1",
"rimraf": "^5.0.10",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.3.0 || >=20.0.0"
}
}