-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.61 KB
/
package.json
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
{
"name": "vite-plugin-i18next-loader",
"version": "3.0.0",
"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,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && tsup-node",
"build:ide": "echo 'tsc -b' && tsc -b",
"clean": "node ./scripts/clean.js",
"clean:yarn": "node ./scripts/clean-yarn.js",
"reset": "node ./scripts/reset.js",
"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": "[email protected]"
}
],
"peerDependencies": {
"vite": ">=3.1.6"
},
"dependencies": {
"dot-prop": "^9.0.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"marked": "^15.0.3",
"marked-terminal": "^7.2.1",
"ts-deepmerge": "^7.0.2"
},
"devDependencies": {
"@alienfast/eslint-config": "^5.1.18",
"@alienfast/prettier-config": "^1.0.0",
"@alienfast/tsconfig": "^1.0.1",
"@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/marked": "^6",
"@types/node": "^22.10.2",
"@types/rimraf": "^4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"auto": "^11.3.0",
"eslint": "^9.16.0",
"execa": "^9.5.2",
"i18next": "^24.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"author": "Kevin Ross <[email protected]>",
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
},
"packageManager": "[email protected]",
"prettier": "@alienfast/prettier-config"
}