x-error-lib 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ const t = {
2
+ "request timeout": "请求超时"
3
+ };
4
+ export {
5
+ t as default
6
+ };
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "x-error-lib",
3
+ "private": false,
4
+ "version": "0.1.0",
5
+ "type": "module",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "dev": "vite",
13
+ "build": "vue-tsc && vite build",
14
+ "preview": "vite preview",
15
+ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
16
+ "format": "prettier --write .",
17
+ "lint-staged": "lint-staged",
18
+ "prepare": "husky"
19
+ },
20
+ "lint-staged": {
21
+ "*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --fix",
22
+ "*": "prettier --write ."
23
+ },
24
+ "peerDependencies": {
25
+ "vue": "^3.4.23",
26
+ "vue-i18n": "^9.13.1",
27
+ "vuetify": "^3.5.16"
28
+ },
29
+ "devDependencies": {
30
+ "@rushstack/eslint-patch": "^1.8.0",
31
+ "@types/node": "^20.12.2",
32
+ "@vitejs/plugin-vue": "^5.0.4",
33
+ "@vue/eslint-config-prettier": "^9.0.0",
34
+ "@vue/eslint-config-typescript": "^13.0.0",
35
+ "eslint": "^8.57.0",
36
+ "eslint-plugin-vue": "^9.24.1",
37
+ "husky": "^9.0.11",
38
+ "lint-staged": "^15.2.2",
39
+ "prettier": "3.2.5",
40
+ "rollup-plugin-copy": "^3.5.0",
41
+ "sass": "^1.74.1",
42
+ "typescript": "^5.2.2",
43
+ "vite": "^5.2.0",
44
+ "vite-plugin-css-injected-by-js": "^3.5.0",
45
+ "vue-tsc": "^2.0.6"
46
+ }
47
+ }