-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.17 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.17 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
{
"name": "unplugin-element-plus",
"version": "0.10.0",
"packageManager": "pnpm@10.15.1",
"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.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./rollup": "./dist/rollup.js",
"./esbuild": "./dist/esbuild.js",
"./rspack": "./dist/rspack.js",
"./rolldown": "./dist/rolldown.js",
"./nuxt": "./dist/nuxt.js",
"./*": "./*"
},
"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"
},
"dependencies": {
"es-module-lexer": "^1.7.0",
"magic-string": "^0.30.18",
"unplugin": "^2.3.10",
"unplugin-utils": "^0.3.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.2.8",
"@sxzz/prettier-config": "^2.2.4",
"@types/node": "^22.18.1",
"@vitest/ui": "^3.2.4",
"bumpp": "^10.2.3",
"esbuild": "~0.25.9",
"escape-string-regexp": "^5.0.0",
"eslint": "^9.35.0",
"fast-glob": "^3.3.3",
"prettier": "^3.6.2",
"rollup": "^4.50.1",
"tsdown": "^0.14.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}