-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
110 lines (110 loc) · 3.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vue-datepicker-next",
"version": "1.0.3",
"description": "A Datepicker Component For Vue3",
"main": "./index.js",
"module": "./index.es.js",
"unpkg": "./index.js",
"jsdelivr": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"start": "npm run dev",
"dev": "vite --host 0.0.0.0",
"prebuild": "npm run lint && npm run test && npm run clean",
"postbuild": "ls index.es.js index.js index.css index.d.ts scss/index.scss >> /dev/null && echo 'build success'",
"build": "npm run build:lib-es & npm run build:lib-umd & npm run css && npm run type",
"build:lib-es": "LIB_FORMAT=es vite build",
"build:lib-umd": "LIB_FORMAT=umd vite build",
"type": "dts-bundle-generator -o ./index.d.ts lib/index.ts",
"css": "sass --style=compressed --no-source-map lib/style/index.scss index.css && postcss index.css --use autoprefixer -o index.css --no-map && cp -R lib/style scss",
"locale": "rm -rf locale/ && rollup -c rollup.locale.config.js",
"clean": "rm -rf scss/ index.*[^html]",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"lint": "vue-tsc --noEmit && eslint 'lib/**/*.{tsx,ts}'",
"test": "jest",
"cov": "jest --coverage",
"docs:dev": "vite serve docs",
"docs:build": "vite build docs",
"docs:preview": "vite preview docs --port 8080",
"release": "bash build/git.sh && bash build/release.sh",
"deploy": "bash build/deploy.sh",
"prepare": "husky install"
},
"files": [
"/locale",
"/scss",
"index.css",
"index.js",
"index.es.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mengxiong10/vue-datepicker-next.git"
},
"keywords": [
"vue",
"calendar",
"datepicker",
"datetimepicker"
],
"author": "xiemengxiong",
"license": "MIT",
"bugs": {
"url": "https://github.com/mengxiong10/vue-datepicker-next/issues"
},
"homepage": "https://github.com/mengxiong10/vue-datepicker-next#readme",
"lint-staged": {
"**/*.{tsx,ts}": [
"eslint --fix",
"prettier --write"
]
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"date-format-parse": "^0.2.7",
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^27.0.3",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vitejs/plugin-vue": "^1.6.2",
"@vitejs/plugin-vue-jsx": "^1.1.8",
"@vue/compiler-sfc": "^3.2.11",
"@vue/test-utils": "^2.0.0-rc.16",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.4.2",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.1",
"dts-bundle-generator": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.17.0",
"highlight.js": "^11.3.1",
"husky": "^7.0.4",
"jest": "^27.4.3",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^12.1.2",
"markdown-it": "^12.3.0",
"postcss-cli": "^9.1.0",
"prettier": "^2.3.2",
"rollup-plugin-typescript2": "^0.31.1",
"sass": "^1.38.2",
"typescript": "^4.5.2",
"utility-types": "^3.10.0",
"vite": "^2.5.2",
"vite-svg-loader": "^2.2.0",
"vue-tsc": "^0.2.3"
}
}