-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.66 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.66 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
{
"name": "vite-plugin-i18next-loader",
"version": "3.1.3",
"description": "Vite plugin loader for client embedded i18next locales composited from one to many json or yaml files.",
"type": "module",
"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 ",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && tsup-node",
"typecheck": "echo 'tsc -b' && tsc -b",
"clean": "tsx ./scripts/clean.ts",
"clean:yarn": "tsx ./scripts/clean-yarn.ts",
"reset": "tsx ./scripts/reset.ts",
"lint:fix": "eslint . --cache --fix",
"test": "vitest",
"release": "yarn auto shipit"
},
"keywords": [
"vite-plugin",
"loader",
"i18next",
"locales",
"yaml",
"json"
],
"license": "MIT",
"repository": "https://github.com/alienfast/vite-plugin-i18next-loader",
"homepage": "https://github.com/alienfast/vite-plugin-i18next-loader",
"maintainers": [
{
"name": "Kevin Ross",
"email": "kevin.ross@alienfast.com"
}
],
"peerDependencies": {
"vite": ">=3.1.6"
},
"dependencies": {
"dot-prop": "^10.0.0",
"glob": "^11.0.3",
"js-yaml": "^4.1.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"ts-deepmerge": "^7.0.3"
},
"devDependencies": {
"@alienfast/eslint-config": "^6.0.6",
"@alienfast/prettier-config": "^1.0.2",
"@alienfast/tsconfig": "^1.0.4",
"@auto-it/all-contributors": "^11.3.0",
"@auto-it/first-time-contributor": "^11.3.0",
"@auto-it/released": "^11.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.4.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"auto": "^11.3.0",
"eslint": "^9.35.0",
"execa": "^9.6.0",
"i18next": "^25.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.50.2",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.5",
"vitest": "^3.2.4"
},
"author": "Kevin Ross <kevin.ross@alienfast.com>",
"auto": {
"canary": {
"target": "comment"
},
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
},
"packageManager": "yarn@4.5.3",
"prettier": "@alienfast/prettier-config"
}