-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (60 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (60 loc) · 1.44 KB
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
{
"name": "w-utils-set",
"version": "1.0.9",
"description": "A collection of utility functions and tools for frontend development",
"homepage": "https://github.com/yuanbo-wang/utils",
"repository": {
"type": "git",
"url": "https://github.com/yuanbo-wang/utils"
},
"keywords": [
"m3u8"
],
"main": "./dist-lib/index.umd.js",
"module": "./dist-lib/index.es.js",
"files": [
"dist-lib"
],
"exports": {
".": {
"import": "./dist-lib/index.es.js",
"require": "./dist-lib/index.umd.js"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "cross-env BUILD_MODE=lib vite build"
},
"author": "w",
"license": "ISC",
"dependencies": {
"@vueuse/core": "^14.0.0",
"axios": "^1.3.4",
"dayjs": "^1.11.18",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"mux.js": "^6.3.0",
"naive-ui": "^2.34.4",
"pinia": "^3.0.1",
"reset-css": "^5.0.2",
"streamsaver-js": "^2.0.7",
"vue": "3.5.21",
"vue-router": "4.5.1"
},
"devDependencies": {
"@microsoft/fetch-event-source": "2.0.1",
"@types/node": "^24.7.2",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/compiler-sfc": "^3.0.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"postcss": "^8.5.6",
"postcss-pxtorem": "^6.1.0",
"vite": "^5.4.8"
}
}