forked from generaltranslation/gt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 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
{
"name": "gt-libraries",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"test-apps/**/*"
],
"scripts": {
"build": "turbo run build --filter='./packages/*'",
"test": "turbo run test --filter='./packages/*'",
"lint": "turbo run lint --filter='./packages/*'",
"lint:fix": "turbo run lint:fix --filter='./packages/*'",
"transpile": "turbo run transpile --filter='./packages/*'",
"release": "changeset publish",
"release:gtx-cli-bin": "pnpm --filter gtx-cli run release:bin",
"build:clean": "turbo run build:clean --filter='./packages/*'",
"build:release": "turbo run build:release --filter='./packages/*'",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"changeset": "changeset",
"version-packages": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generaltranslation/gt.git"
},
"author": "General Translation, Inc.",
"license": "FSL-1.1-ALv2",
"bugs": {
"url": "https://github.com/generaltranslation/gt/issues"
},
"homepage": "https://generaltranslation.com/",
"keywords": [
"react",
"translation",
"internationalization",
"localization",
"i18n",
"l10n"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.14.0",
"prettier": "^3.6.2",
"turbo": "^2.5.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.20.0",
"dependencies": {
"@generaltranslation/next-internal": "link:packages/next-internal",
"lefthook": "^1.12.3",
"vite": "^7.0.5"
}
}