-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.37 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.37 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
88
89
90
91
92
93
94
95
{
"name": "unplugin-element-plus",
"version": "0.11.1",
"packageManager": "pnpm@10.21.0",
"description": "Import Element Plus on demand. Support Vite, Webpack, Vue CLI, Rollup and esbuild.",
"type": "module",
"keywords": [
"element-plus",
"unplugin",
"vite",
"webpack",
"rollup",
"esbuild",
"plugin"
],
"license": "MIT",
"homepage": "https://github.com/element-plus/unplugin-element-plus/tree/main/#readme",
"bugs": {
"url": "https://github.com/element-plus/unplugin-element-plus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/element-plus/unplugin-element-plus.git"
},
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./nuxt": "./dist/nuxt.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"build:examples": "pnpm --filter \"./examples/*\" build",
"dev": "tsdown --watch",
"release": "bumpp",
"vite:build": "npm -C examples/vite run build",
"vite:dev": "npm -C examples/vite run dev",
"typecheck": "tsc --noEmit",
"test": "vitest",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@nuxt/kit": "^4.2.1",
"es-module-lexer": "^1.7.0",
"escape-string-regexp": "^5.0.0",
"magic-string": "^0.30.21",
"unplugin": "^2.3.10"
},
"devDependencies": {
"@nuxt/schema": "^4.2.1",
"@sxzz/eslint-config": "^7.2.8",
"@sxzz/prettier-config": "^2.2.4",
"@types/node": "^24.10.0",
"@vitest/ui": "^4.0.8",
"bumpp": "^10.3.1",
"esbuild": "~0.27.0",
"eslint": "^9.39.1",
"fast-glob": "^3.3.3",
"prettier": "^3.6.2",
"rollup": "^4.53.1",
"tsdown": "^0.16.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=20.19.0"
},
"prettier": "@sxzz/prettier-config"
}