-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.39 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.39 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
{
"name": "unplugin-element-plus",
"type": "module",
"version": "0.11.2",
"packageManager": "pnpm@10.28.0",
"description": "Import Element Plus on demand. Support Vite, Webpack, Vue CLI, Rollup and esbuild.",
"license": "MIT",
"homepage": "https://github.com/element-plus/unplugin-element-plus/tree/main/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/element-plus/unplugin-element-plus.git"
},
"bugs": {
"url": "https://github.com/element-plus/unplugin-element-plus/issues"
},
"keywords": [
"element-plus",
"unplugin",
"vite",
"webpack",
"rollup",
"esbuild",
"plugin"
],
"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"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"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": "tsgo --noEmit",
"test": "vitest",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@nuxt/kit": "^4.2.2",
"es-module-lexer": "^2.0.0",
"escape-string-regexp": "^5.0.0",
"rolldown-string": "^0.2.1",
"unplugin": "^3.0.0"
},
"devDependencies": {
"@nuxt/schema": "^4.2.2",
"@sxzz/eslint-config": "^7.4.5",
"@sxzz/prettier-config": "^2.2.6",
"@sxzz/test-utils": "^0.5.15",
"@types/node": "^25.0.9",
"@typescript/native-preview": "7.0.0-dev.20260118.1",
"@vitest/ui": "^4.0.17",
"bumpp": "^11.0.0",
"esbuild": "~0.27.2",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"tsdown": "^0.19.0",
"typescript": "^6.0.2",
"vite": "^8.0.0",
"vitest": "^4.0.17"
},
"prettier": "@sxzz/prettier-config"
}