wkit/package.json

37 lines
829 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-05-08 19:17:55 +08:00
"version": "1.9.5",
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": {
2023-03-21 16:46:53 +08:00
"build:next": "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",
"build": "npm run build:next && npm run build:es6"
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",
2023-04-03 10:50:18 +08:00
"bd-core",
"web-components",
"native",
"cross-framework",
"html",
"css"
2023-03-06 12:25:54 +08:00
],
"devDependencies": {
"esbuild": "^0.17.11"
},
"author": "yutent",
"license": "MIT"
}