store/package.json

22 lines
606 B
JSON
Raw Normal View History

2023-04-11 14:57:45 +08:00
{
"name": "@bytedo/store",
2023-04-11 15:00:27 +08:00
"type": "module",
2023-04-11 14:57:45 +08:00
"version": "0.0.0",
"description": "indexedDB 操作库",
"main": "dist/index.js",
2023-04-11 15:00:27 +08:00
"files": [
"dist/*"
],
"scripts": {
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bd-js/core.git"
},
"author": "yutent",
2023-04-11 14:57:45 +08:00
"license": "MIT"
}