-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |