generated from hemengke1997/ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.19 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "vite-plugin-i18n-ally",
"version": "5.2.5",
"packageManager": "[email protected]",
"description": "Vite plugin for automatic lazy loading of i18n resources",
"type": "module",
"keywords": [
"i18n",
"lazyload",
"vite-plugin-i18n",
"vite-plugin-i18n-ally"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hemengke1997/vite-plugin-i18n-ally.git"
},
"author": "hemengke <https://github.com/hemengke1997>",
"files": [
"*.d.ts",
"dist/"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"require": "./dist/client/index.cjs",
"import": "./dist/client/index.js"
},
"./virtual": {
"types": "./virtual.d.ts"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"*.d.ts"
]
}
},
"scripts": {
"dev": "tsup --watch",
"build": "rm -rf dist && tsup",
"test": "run-s test:unit test:serve test:build",
"test:unit": "vitest run",
"test:serve": "vitest run -c vitest.config.e2e.ts",
"test:build": "cross-env VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
"prepare": "simple-git-hooks",
"lint": "eslint . --fix --cache",
"commitlint": "commitlint -e",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vite": ">=5.0.0"
},
"dependencies": {
"debug": "^4.3.7",
"fast-glob": "^3.3.2",
"find-up": "^7.0.0",
"importx": "^0.5.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"language-tags": "^1.0.9"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@minko-fe/commitlint-config": "^2.1.2",
"@minko-fe/eslint-config": "^4.1.1",
"@minko-fe/tsconfig": "^2.1.1",
"@swc/core": "^1.7.40",
"@types/clone-deep": "^4.0.4",
"@types/debug": "^4.1.12",
"@types/js-yaml": "^4.0.9",
"@types/language-tags": "^1.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"bumpp": "^9.8.1",
"clone-deep": "^4.0.1",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"i18next": "23.5.1",
"jsdom": "^22.1.0",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "13.2.2",
"simple-git-hooks": "^2.11.1",
"taze": "^0.17.2",
"tsup": "8.3.0",
"tsup-plugin-bundleless": "^1.2.0",
"typescript": "^5.7.2",
"vite-plugin-i18n-ally": "workspace:*",
"vitepress": "^1.5.0",
"vitest": "^2.1.6",
"vitest-e2e": "^0.0.10"
},
"simple-git-hooks": {
"commit-msg": "npm run commitlint",
"pre-commit": "npm run lint"
},
"commitlint": {
"extends": [
"@minko-fe/commitlint-config"
]
}
}