wkit/package.json

29 lines
575 B
JSON
Raw Normal View History

2023-03-06 12:25:54 +08:00
{
"name": "@ninejs/core",
"version": "0.0.1",
"type": "module",
2023-03-06 12:27:23 +08:00
"description": "9号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=es2017 --outfile=dist/index.js"
},
2023-03-06 12:25:54 +08:00
"repository": {
"type": "git",
"url": "git+https://github.com/bytedo/nine-core.git"
},
"keywords": [
"nine.",
"ninejs",
"nine-ui",
"nine-core"
],
"devDependencies": {
"esbuild": "^0.17.11"
},
"author": "yutent",
"license": "MIT"
}