-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.09 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
{
"name": "next-i18n-docs",
"version": "1.0.0",
"description": "Next.js documentation translated into 9 languages, deployed on Cloudflare Workers",
"main": "index.js",
"scripts": {
"postinstall": "bun run build:packages",
"format": "biome format --write .",
"build:packages": "bun run --filter @next-i18n/const --filter @next-i18n/utils --filter @next-i18n/translate --filter @next-i18n/crawler build",
"test": "bun run --filter '*' test",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"typecheck": "tsc --noEmit && tsc --noEmit -p packages/const && tsc --noEmit -p packages/utils && tsc --noEmit -p packages/translate && tsc --noEmit -p packages/crawler && tsc --noEmit -p apps/router && tsc --noEmit -p apps/tampermonkey",
"predev": "bun run dev:clean",
"dev": "bun run --filter @next-i18n/router dev",
"predev:all": "bun run dev:clean",
"dev:all": "cd apps/router && bun run dev-all.ts --all",
"dev:clean": "rm -rf .cache/web-v* apps/web/src/content apps/web-v/src/content && echo 'Dev cache cleared'",
"predev:latest": "bun run dev:clean",
"dev:latest": "bun run --filter @next-i18n/web dev",
"dev:v": "bun run --filter @next-i18n/web-v dev",
"build:latest": "bun run --filter @next-i18n/web build",
"build:v": "bun run --filter @next-i18n/web-v build",
"deploy:latest": "bun run --filter @next-i18n/web deploy",
"deploy:v": "bun run --filter @next-i18n/web-v deploy",
"deploy:router": "bun run --filter @next-i18n/router deploy",
"translate": "bun run --filter @next-i18n/translate start",
"tampermonkey:dev": "bun run --filter @next-i18n/tampermonkey dev",
"tampermonkey:build": "bun run --filter @next-i18n/tampermonkey build",
"crawler": "node packages/crawler/dist/index.js"
},
"keywords": [],
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "^1.3.11",
"tsx": "^4.19.4",
"typescript": "^5.9.3"
},
"author": "",
"license": "ISC",
"workspaces": [
"packages/*",
"apps/*"
]
}