-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 5.75 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 5.75 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
114
115
116
117
118
{
"name": "intlayer-monorepo",
"version": "8.7.5",
"private": false,
"description": "Intlayer monorepo - Layer of abstraction between the business logic and the data access layer. Manage internationalization in a simple way, through TypeScript, JavaScript or JSON declaration file.",
"homepage": "https://intlayer.org",
"bugs": {
"url": "https://github.com/aymericzip/intlayer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aymericzip/intlayer.git"
},
"license": "Apache-2.0",
"author": {
"name": "Aymeric PINEAU",
"url": "https://github.com/aymericzip"
},
"contributors": [
{
"name": "Aymeric Pineau",
"email": "ay.pineau@gmail.com",
"url": "https://github.com/aymericzip"
}
],
"type": "module",
"workspaces": [
"./docs",
"./apps/*",
"./packages/**/*",
"./utils/*",
"./examples/*",
"./plugins/*"
],
"scripts": {
"build": "turbo build --filter=./packages/** --filter=./docs --filter=./apps/backend",
"build:ci": "turbo build:ci --filter=./packages/** --filter=./docs --filter=./apps/backend",
"check": "bun --bun biome check .",
"check:fix": "bun --bun biome check --write .",
"clean": "turbo clean --filter=./packages/** --filter=./docs --filter=./apps/backend",
"clean:node_modules": "bun --bun rimraf node_modules ./**/node_modules",
"clean:packages:node_modules": "bun --bun rimraf ./**/node_modules",
"dev": "bun ./scripts/script-dev-package-command.mjs --command build",
"dev:pick": "bun ./scripts/script-pick.mjs --command dev",
"docker:app:build": "./scripts/docker-build-app.sh",
"docker:app:start": "docker run --rm -p 3000:3000 --name intlayer-app-app intlayer-app",
"docker:backend:build": "docker build -t intlayer-backend -f ./apps/backend/Dockerfile --progress=plain .",
"docker:backend:start": "docker run --rm -p 3100:3100 --name intlayer-backend-app intlayer-backend",
"docker:design-system:build": "docker build -t intlayer-design-system -f ./packages/@intlayer/design-system/Dockerfile --progress=plain .",
"docker:design-system:start": "docker run --rm -p 6006:6006 --name intlayer-design-system-app intlayer-design-system",
"docker:mcp:build": "docker build -t intlayer-mcp -f ./packages/@intlayer/mcp/Dockerfile --progress=plain .",
"docker:mcp:start": "docker run --rm -p 3000:3000 --name intlayer-mcp-app intlayer-mcp",
"docker:showcase:build": "docker build -t intlayer-showcase -f ./apps/showcase/Dockerfile --progress=plain .",
"docker:showcase:start": "docker run --rm -p 3100:3100 --name intlayer-showcase-app intlayer-showcase",
"docker:website:build": "./scripts/docker-build-website.sh",
"docker:website:start": "docker run --rm -p 3000:3000 --name intlayer-website-app intlayer-website",
"format": "bun --bun biome format . --check",
"format:fix": "bun --bun biome format --write .",
"format:package": "prettier --write '**/package.json'",
"install:packages": "bun install --filter '!./examples/**' --filter '!./apps/website/**'",
"lint": "bun --bun biome lint .",
"lint:fix": "bun --bun biome lint --write .",
"lint-staged": "lint-staged --allow-empty",
"prepare": "husky",
"prepare:publish": "bun run clean && bun install && bun run build",
"prepublish_": "bun turbo prepublish --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/**",
"prepublish": "turbo prepublish --filter=./packages/** --filter=./docs --filter=./apps/backend",
"publish": "bun turbo publish --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/**",
"publish:canary": "bun run prepare:publish && turbo publish:canary --filter=./packages/@intlayer/design-system && turbo publish:canary --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/**",
"publish:canary:ok": "bun turbo publish:canary --filter=./packages/@intlayer/design-system && turbo publish:canary --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/**",
"publish:ci": "bun run prepublish && bun run publish",
"publish:latest": "bun run prepare:publish && bun run publish:latest:ok",
"publish:latest:ok": "bun turbo publish:latest --filter=./packages/@intlayer/design-system && turbo publish:latest --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/**",
"test": "bun turbo test --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/** --concurrency=2",
"test:pick": "bun ./scripts/script-pick.mjs --command test",
"typecheck": "bun turbo typecheck --filter=./packages/** --filter=./docs --filter=./apps/backend --filter=./plugins/** --concurrency=1"
},
"resolutions": {
"react": "19.2.5",
"react-dom": "19.2.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/types": "20.5.0",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@utils/ts-config": "workspace:*",
"@utils/ts-config-types": "workspace:*",
"@utils/tsdown-config": "workspace:*",
"@vitejs/plugin-react": "6.0.1",
"bun": "1.3.12",
"chokidar": "3.6.0",
"enquirer": "2.4.1",
"fast-glob": "3.3.3",
"husky": "9.1.7",
"intlayer": "workspace:*",
"lint-staged": "16.4.0",
"minimist": "1.2.8",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"rimraf": "6.1.3",
"rollup-plugin-visualizer": "7.0.1",
"tsdown": "0.21.9",
"tslib": "2.8.1",
"turbo": "2.9.6",
"typescript": "6.0.3",
"vitest": "4.1.4"
},
"packageManager": "bun@1.3.12",
"engines": {
"bun": ">=1.3.12",
"node": ">=16.0.0"
},
"bug": {
"url": "https://github.com/aymericzip/intlayer/issues"
}
}