From 7d556458942fc8ce7c17703adf9a4d453b6add99 Mon Sep 17 00:00:00 2001 From: Dread <8791926+dread@user.noreply.gitee.com> Date: Wed, 23 Jun 2021 10:13:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 31 ++++++++++++++++++++++--------- package-lock.json | 4 +++- package.json | 27 +++++++++++++++------------ 3 files changed, 40 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index 01028cb..eb15ee3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,25 @@ -# ---> Vue -# gitignore template for Vue.js projects -# -# Recommended template: Node.gitignore +# node_modules +.DS_Store +node_modules +package-lock.json +/dist +/website -# TODO: where does this rule come from? -docs/_book -# TODO: where does this rule come from? -test/ +# local env files +.env.local +.env.*.local -#node_modules \ No newline at end of file +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5698e6d..3ee33b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,8 @@ { - "requires": true, + "name": "mudi", + "version": "1.0.0", "lockfileVersion": 1, + "requires": true, "dependencies": { "axios": { "version": "0.21.1", diff --git a/package.json b/package.json index 1cc7310..b4ce85b 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,16 @@ { - "id": "t-slide", - "name": "滑动交互,左滑操作,滑动编辑,滑动删除", - "version": "1.0.1", - "description": "多端通用,自定义内容样式,滑动交互,滑动操作,滑动编辑,滑动删除", - "keywords": [ - "滑动", - "左滑", - "滑动交互", - "滑动操作", - "滑动删除" - ] -} \ No newline at end of file + "name": "mudi", + "version": "1.0.0", + "description": "", + "main": "main.js", + "dependencies": { + "js-md5": "^0.7.3", + "axios": "^0.21.1" + }, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC" +}