-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "astro-i18n-monorepo",
"private": true,
"scripts": {
"dev": "turbo run dev",
"test": "turbo run test",
"build": "turbo run build",
"astro-i18n:build": "turbo run build --filter=astro-i18n",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"i18n:generate:pages": "turbo run i18n:generate:pages",
"i18n:generate:types": "turbo run i18n:generate:types",
"i18n:extract": "turbo run i18n:extract",
"i18n:install": "turbo run i18n:install",
"npm:publish:patch": "turbo run npm:publish:patch --filter=astro-i18n",
"npm:publish:minor": "turbo run npm:publish:minor --filter=astro-i18n",
"npm:publish:major": "turbo run npm:publish:major --filter=astro-i18n",
"npm:pack": "turbo run npm:pack --filter=astro-i18n"
},
"devDependencies": {
"af-prettierrc": "latest",
"eslint": "^7.32.0",
"eslint-config-af-typescript": "latest",
"prettier": "^2.8.8",
"turbo": "^1.10.13",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}