mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-12 12:25:22 +08:00
f6b7fb30a8
* docs: upgrade vitepress * revert original copy button --------- Co-authored-by: 云游君 <me@yunyoujun.cn>
28 lines
573 B
JSON
28 lines
573 B
JSON
{
|
|
"name": "@element-plus/build-constants",
|
|
"version": "0.0.1",
|
|
"description": "Build constants for Element Plus",
|
|
"keywords": [
|
|
"element-plus"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "pnpm run stub",
|
|
"stub": "unbuild --stub"
|
|
},
|
|
"devDependencies": {
|
|
"unbuild": "^2.0.0"
|
|
}
|
|
}
|