Skip to content

Commit

Permalink
chore: release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntzyMo committed Apr 17, 2024
1 parent 092829d commit bbb0d50
Showing 1 changed file with 52 additions and 14 deletions.
66 changes: 52 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,62 @@
{
"name": "vue-day-calendar-monorepo",
"private": true,
"name": "vue-day-calendar",
"version": "1.0.0",
"type": "module",
"version": "0.0.0",
"description": "",
"main": "index.js",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist"
],
"keywords": [
"vue",
"dayPicker",
"calendar"
],
"author": "AntzyMo <mozbano@163.com>",
"scripts": {
"dev": "pnpm -C ./packages/vueDayCalendar dev",
"build": "pnpm -C ./packages/vueDayCalendar build",
"docs": "pnpm -C ./docs dev",
"dev": "vite build -w",
"build": "vite build",
"docs": "pnpm run build && pnpm -C ./docs dev",
"docs:build": "pnpm run build && pnpm -C ./docs build",
"example":"pnpm -C ./example dev",
"release": "bumpp ./packages/vueDayCalendar/package.json -r"
"play": "pnpm -C ./playground dev",
"release": "bumpp package.json "
},
"dependencies": {
"@iconify-json/mingcute": "^1.1.17",
"dayjs": "^1.11.10",
"vue": "^3.4.21"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"typescript": "^5.2.2",
"unplugin-icons": "^0.18.5",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.7.3",
"vue-tsc": "^2.0.6",
"@antzy/eslint-config": "^3.2.6",
"bumpp": "^9.4.0",
"eslint": "^8.57.0"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntzyMo/vue-day-calendar.git"
},
"bugs": {
"url": "https://github.com/AntzyMo/vue-day-calendar.git/issues"
},
"homepage": "https://github.com/AntzyMo/vue-day-calendar"
}

0 comments on commit bbb0d50

Please sign in to comment.