@blueking/date-picker 0.0.23 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/test.vue.d.ts +2 -0
- package/dist/vue2-full.css +1 -1
- package/dist/vue2-full.es.js +26704 -0
- package/dist/vue2-light.css +1 -1
- package/dist/vue2-light.es.js +26103 -0
- package/dist/vue3-full.css +1 -1
- package/dist/vue3-full.es.js +21756 -0
- package/dist/vue3-light.css +1 -1
- package/dist/vue3-light.es.js +3041 -0
- package/package.json +18 -15
- package/dist/vue2-full.js +0 -454
- package/dist/vue2-light.js +0 -454
- package/dist/vue3-full.js +0 -454
- package/dist/vue3-light.js +0 -1
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueking/date-picker",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.25",
|
|
4
4
|
"description": "蓝鲸监控平台日期时间选择",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Tencent BlueKing",
|
|
7
|
+
"packageManager": "pnpm@8.6.0",
|
|
7
8
|
"scripts": {
|
|
8
|
-
"dev": "vite",
|
|
9
|
+
"dev": "vite -c scripts/vite.dev.ts",
|
|
9
10
|
"prepublishOnly": "run-s build dts",
|
|
10
|
-
"build": "ts-node --project tsconfig.node.json ./vite.build.ts",
|
|
11
|
+
"build": "ts-node --project tsconfig.node.json ./scripts/vite.build.ts",
|
|
11
12
|
"preview": "vite preview",
|
|
12
|
-
"dts": "vue-tsc --project tsconfig.dts.json"
|
|
13
|
+
"dts": "vue-tsc --project tsconfig.dts.json",
|
|
14
|
+
"debug": "node --nolazy -r ts-node/register --inspect-brk ./scripts/vite.build.ts",
|
|
15
|
+
"visualize": "vite-bundle-visualizer -c scripts/vite.vusualizer.ts"
|
|
13
16
|
},
|
|
14
17
|
"exports": {
|
|
15
18
|
".": {
|
|
@@ -54,6 +57,7 @@
|
|
|
54
57
|
]
|
|
55
58
|
}
|
|
56
59
|
},
|
|
60
|
+
"types": "./dist/vue3.d.ts",
|
|
57
61
|
"main": "dist/vue3-light.js",
|
|
58
62
|
"unpkg": "dist/vue3-full.js",
|
|
59
63
|
"files": [
|
|
@@ -63,22 +67,20 @@
|
|
|
63
67
|
"access": "public",
|
|
64
68
|
"registry": "https://registry.npmjs.org/"
|
|
65
69
|
},
|
|
66
|
-
"dependencies": {
|
|
67
|
-
"dayjs": "^1.11.10"
|
|
68
|
-
},
|
|
69
70
|
"peerDependencies": {
|
|
70
71
|
"bkui-vue": "^0.0.2-beta.77",
|
|
72
|
+
"dayjs": "^1.11.10",
|
|
73
|
+
"lodash-es": "^4.17.21",
|
|
71
74
|
"vue": "^3.2.0"
|
|
72
75
|
},
|
|
73
76
|
"devDependencies": {
|
|
74
77
|
"@types/fs-extra": "^11.0.3",
|
|
75
|
-
"@types/node": "^
|
|
76
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
77
|
-
"@typescript-eslint/parser": "^
|
|
78
|
+
"@types/node": "^18.16.0",
|
|
79
|
+
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
80
|
+
"@typescript-eslint/parser": "^6.9.0",
|
|
78
81
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
79
|
-
"bkui-vue": "0.0.2-beta.
|
|
80
|
-
"
|
|
81
|
-
"dayjs": "^1.11.10",
|
|
82
|
+
"bkui-vue": "0.0.2-beta.78.beta.1",
|
|
83
|
+
"es-module-lexer": "^1.3.1",
|
|
82
84
|
"eslint": "8.26.0",
|
|
83
85
|
"eslint-config-prettier": "^9.0.0",
|
|
84
86
|
"eslint-config-tencent": "^1.0.4",
|
|
@@ -103,12 +105,13 @@
|
|
|
103
105
|
"stylelint-config-standard": "^34.0.0",
|
|
104
106
|
"stylelint-order": "^6.0.3",
|
|
105
107
|
"stylelint-scss": "^5.1.0",
|
|
108
|
+
"terser": "^5.22.0",
|
|
106
109
|
"ts-node": "^10.9.1",
|
|
107
110
|
"tslib": "^2.6.2",
|
|
108
|
-
"typescript": "^5.
|
|
111
|
+
"typescript": "^5.2.2",
|
|
109
112
|
"vite": "^4.4.5",
|
|
113
|
+
"vite-bundle-visualizer": "^0.10.0",
|
|
110
114
|
"vite-plugin-inspect": "^0.7.40",
|
|
111
|
-
"vite-plugin-style-import": "^2.0.0",
|
|
112
115
|
"vue": "^3.3.6",
|
|
113
116
|
"vue-eslint-parser": "^9.3.2",
|
|
114
117
|
"vue-tsc": "^1.8.5"
|