This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.66 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
{
"name": "@vintl/unplugin",
"version": "2.0.0",
"description": "Transform files containing ICU MessageFormat messages.",
"author": {
"name": "Alexander 'Brawaru' Sorokin",
"url": "https://github.com/brawaru"
},
"repository": "github:vintl-dev/unplugin",
"bugs": "https://github.com/vintl-dev/unplugin/issues",
"homepage": "https://github.com/vintl-dev/unplugin#readme",
"funding": "https://github.com/Brawaru/Brawaru/blob/main/SUPPORT.md",
"keywords": [
"i18n",
"icu-messageformat",
"rollup",
"vite",
"wepack",
"unplugin"
],
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.mjs",
"require": "./dist/webpack.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.mjs",
"require": "./dist/vite.cjs"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"import": "./dist/rollup.mjs",
"require": "./dist/rollup.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"prepack": "pnpm run build",
"test": "vitest run",
"lint": "eslint src",
"bt": "pnpm run -s build && pnpm run -s test",
"tsc:check": "tsc --noEmit"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@ltd/j-toml": "^1.38.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@rollup/plugin-json": "^6.1.0",
"@types/glob": "^8.1.0",
"@types/node": "^18.19.15",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"memfs": "^4.7.0",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"rollup": "^4.10.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.1.1",
"vitest": "^1.2.2",
"webpack": "^5.90.1"
},
"dependencies": {
"@formatjs/cli-lib": "^6.3.6",
"@formatjs/icu-messageformat-parser": "^2.7.6",
"@rollup/pluginutils": "^5.1.0",
"glob": "^10.3.10",
"import-meta-resolve": "^4.0.0",
"pathe": "^1.1.2",
"unplugin": "^1.7.1"
},
"peerDependencies": {
"rollup": "^4.0.0",
"vite": "^5.0.0",
"webpack": "^5"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"rollup": {
"optional": true
},
"webpack": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}