-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.6 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.6 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
{
"name": "@feugene/fint-i18n",
"version": "0.1.1",
"description": "Lightweight Vue 3 i18n library with lazy-loading blocks and template caching",
"author": "feugene <feugene@example.com>",
"license": "MIT",
"homepage": "https://github.com/efureev/fint-i18n#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/efureev/fint-i18n.git"
},
"bugs": {
"url": "https://github.com/efureev/fint-i18n/issues"
},
"keywords": [
"vue",
"i18n",
"localization",
"lazy-loading",
"vue3",
"translation"
],
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/types/core/index.d.ts",
"import": "./dist/core.js"
},
"./vue": {
"types": "./dist/types/vue/index.d.ts",
"import": "./dist/vue.js"
},
"./plugins": {
"types": "./dist/types/plugins/index.d.ts",
"import": "./dist/plugins.js"
}
},
"sideEffects": false,
"peerDependencies": {
"vue": "^3.5.32"
},
"devDependencies": {
"@antfu/eslint-config": "^8.1.0",
"@codecov/vite-plugin": "^1.9.1",
"@iconify-json/lucide": "^1.2.101",
"@types/node": "^25.5.2",
"@unocss/eslint-plugin": "^66.6.8",
"@unocss/reset": "^66.6.8",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.3",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"jsdom": "^29.0.2",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "^6.0.2",
"unocss": "^66.6.8",
"vite": "^8.0.5",
"vitest": "^4.1.3",
"vue": "^3.5.32",
"vue-tsc": "^3.2.6"
},
"scripts": {
"dev": "vite --config playground/vite.config.ts",
"playground": "vite --config playground/vite.config.ts",
"playground:build": "vite build --config playground/vite.config.ts",
"build:analyze": "ANALYZE=true vite build && vue-tsc -p tsconfig.build.json",
"build": "vite build && vue-tsc -p tsconfig.build.json",
"prepublishOnly": "yarn build",
"bench": "mkdir -p dist/analysis && vitest bench --run --config vite.config.ts --environment node --outputJson dist/analysis/bench-results.json bench/core.bench.ts",
"type-check": "vue-tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "yarn test:coverage:package && yarn test:coverage:playground",
"test:coverage:package": "vitest run --coverage",
"test:coverage:playground": "vitest run --config playground/vite.config.ts --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}