-
-
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": "2.0.14",
"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": "kevin.ross@alienfast.com"
}
],
"peerDependencies": {
"vite": ">=3.1.6"
},
"dependencies": {
"dot-prop": "^9.0.0",
"glob-all": "^3.3.1",
"js-yaml": "^4.1.0",
"marked": "^13.0.2",
"marked-terminal": "^7.1.0",
"ts-deepmerge": "^7.0.0"
},
"devDependencies": {
"@alienfast/eslint-config": "^5.1.11",
"@alienfast/prettier-config": "^1.0.0",
"@alienfast/tsconfig": "^1.0.1",
"@auto-it/all-contributors": "^11.1.6",
"@auto-it/first-time-contributor": "^11.1.6",
"@auto-it/released": "^11.1.6",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^5",
"@types/node": "^20.14.9",
"@types/rimraf": "^3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"auto": "^11.1.6",
"eslint": "^9.6.0",
"execa": "^9.3.0",
"i18next": "^23.11.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.3",
"vitest": "^1.6.0"
},
"author": "Kevin Ross <kevin.ross@alienfast.com>",
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
},
"packageManager": "yarn@4.3.1",
"prettier": "@alienfast/prettier-config"
}