wkit/package.json

31 lines
686 B
JSON
Raw Permalink Normal View History

2023-03-06 12:25:54 +08:00
{
2023-03-09 18:39:21 +08:00
"name": "@bd/core",
2023-03-17 10:59:48 +08:00
"version": "1.5.1",
2023-03-06 12:25:54 +08:00
"type": "module",
2023-03-09 18:39:21 +08:00
"description": "百搭UI组件库的核心",
2023-03-06 12:25:54 +08:00
"main": "dist/index.js",
"files": [
"dist/*"
],
2023-03-07 19:26:32 +08:00
"scripts": {
"build": "esbuild src/index.js --minify --bundle --format=esm --target=esnext --outfile=dist/index.js",
"build:es6": "esbuild src/index.js --minify --bundle --format=esm --target=es6 --outfile=dist/index.es6.js"
2023-03-07 19:26:32 +08:00
},
2023-03-06 12:25:54 +08:00
"repository": {
"type": "git",
2023-03-09 18:39:21 +08:00
"url": "git+https://github.com/bd-js/core.git"
2023-03-06 12:25:54 +08:00
},
"keywords": [
2023-03-13 18:37:12 +08:00
"bd.js",
"bdjs",
"bd-ui",
"wcui",
"bd-core"
2023-03-06 12:25:54 +08:00
],
"devDependencies": {
"esbuild": "^0.17.11"
},
"author": "yutent",
"license": "MIT"
}