-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.57 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
{
"author": "Kevin Ross <kevin.ross@alienfast.com>",
"auto": {
"canary": {
"target": "comment"
},
"plugins": [
[
"npm",
{
"setRcToken": false
}
],
"all-contributors",
"first-time-contributor",
"released"
]
},
"dependencies": {
"dot-prop": "^10.1.0",
"glob": "^13.0.6",
"js-yaml": "^4.2.0",
"marked": "^18.0.4",
"marked-terminal": "^7.3.0",
"ts-deepmerge": "^8.0.0"
},
"description": "Vite plugin loader for client embedded i18next locales composited from one to many json or yaml files.",
"devDependencies": {
"@alienfast/biome-config": "^1.0.6",
"@alienfast/tsconfig": "^1.0.8",
"@auto-it/all-contributors": "^11.3.6",
"@auto-it/first-time-contributor": "^11.3.6",
"@auto-it/released": "^11.3.6",
"@biomejs/biome": "^2.4.16",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.1",
"auto": "^11.3.6",
"execa": "^9.6.1",
"i18next": "26.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"tsdown": "^0.22.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=24"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"homepage": "https://github.com/alienfast/vite-plugin-i18next-loader",
"keywords": [
"vite-plugin",
"loader",
"i18next",
"locales",
"yaml",
"json"
],
"license": "MIT",
"main": "./dist/index.js",
"main-note": "Though this is ESM only, the following main is to appease tsc and varieties of moduleResolution e.g. node vs nodenext, otherwise types aren't found. see https://github.com/rosskevin/ts-esm-workspaces/tree/bug-main-required-to-build#workaround ",
"maintainers": [
{
"email": "kevin.ross@alienfast.com",
"name": "Kevin Ross"
}
],
"name": "vite-plugin-i18next-loader",
"packageManager": "pnpm@11.5.1",
"peerDependencies": {
"vite": ">=3.1.6"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/alienfast/vite-plugin-i18next-loader",
"scripts": {
"build": "pnpm clean && tsdown",
"check": "run-p -c --aggregate-output check-types check-biome test",
"check-biome": "biome check --write",
"check-types": "tsc -b",
"clean": "tsx ./scripts/clean.ts",
"clean:pnpm": "tsx ./scripts/clean-pnpm.ts",
"release": "pnpm auto shipit",
"reset": "tsx ./scripts/reset.ts",
"test": "vitest"
},
"sideEffects": false,
"type": "module",
"version": "4.1.0"
}