-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.52 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
{
"name": "mfuns-player-meon",
"version": "3.0.0-alpha.14",
"description": "基于typescript的PC端弹幕播放器",
"type": "module",
"main": "lib/core/index.js",
"exports": {
".": "./lib/core/index.js",
"./player": "./lib/core/player.js",
"./plugin": "./lib/core/plugin.js",
"./config": "./lib/core/config.js",
"./types": "./lib/core/types.js",
"./components": "./lib/core/components.js",
"./utils": "./lib/core/utils.js",
"./plugins/*": "./lib/plugins/*",
"./css/*": "./src/css/*",
"./icon/*": "./src/icon/*",
"./mfuns-player/*": "./lib/mfuns-player/*",
"./mfuns-plugin/*": "./lib/mfuns-plugin/*"
},
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:player",
"build:lib": "npm run clear:lib && tsc --project tsconfig.lib.json && tsc-alias -p tsconfig.lib.json && babel lib -d lib",
"build:player": "npm run clear:player && node ./vite.build-player.js",
"preview": "vite preview",
"lint": "",
"clear:lib": "rimraf ./lib/",
"clear:player": "rimraf ./dist/",
"prepack": "npm run build:lib"
},
"files": [
"lib",
"src/css",
"src/icon"
],
"keywords": [
"mfuns",
"player",
"danmaku",
"video",
"typescript"
],
"author": "Minteea",
"contributors": [
"Minteea",
"rudiusu"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Mfuns-cn/mfuns-player/issues"
},
"homepage": "https://github.com/Mfuns-cn/mfuns-player#readme",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-plugin-transform-define": "^2.1.4",
"cross-env": "^7.0.3",
"dashjs": "^4.7.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"flv.js": "^1.6.2",
"glob": "^10.3.10",
"hls.js": "^1.4.13",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"sass": "^1.58.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"lit-html": "^2.7.3",
"mfuns-advanced-danmaku": "^1.0.0"
}
}