-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "yhht-plus",
"version": "0.2.3",
"description": "A Component Library for Vue.js.",
"type": "module",
"types": "lib",
"main": "lib",
"module": "lib",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/cjs/index.js"
},
"./lib/style.css": "./lib/style.css",
"./lib/utils/*": "./lib/utils/*.js",
"./lib/utils": "./lib/utils/index.js",
"./lib/*.js": "./lib/*.js",
"./*": "./*"
},
"keywords": [
"vue",
"vue3",
"vue-next",
"yhht",
"yhht-ui",
"typescript"
],
"files": [
"lib",
"packages"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:docs": "vite build --mode=docs",
"build:utils": "vite build --mode=utils",
"preview": "vite preview"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"@types/raf": "^3.4.3",
"lodash": "^4.17.21",
"performance-now": "^2.1.0",
"raf": "^3.4.1"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^22.1.0",
"@types/web-bluetooth": "^0.0.20",
"@vitejs/plugin-vue": "^5.1.2",
"@vueuse/core": "^10.11.0",
"rollup-plugin-external-globals": "^0.11.0",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue": "^3.4.36",
"vue-router": "^4.4.3",
"vue-tsc": "^2.0.29"
}
}