forked from zhw2590582/ArtPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.21 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
{
"name": "artplayer-packages",
"version": "5.1.0",
"type": "module",
"private": true,
"description": "ArtPlayer.js is a modern and full featured HTML5 video player",
"workspaces": [
"packages/*"
],
"scripts": {
"build:all": "npm run build all && npm run build:i18n && npm run build:sw && npm run build:ts && npm run build:docs",
"lint": "npx eslint packages/*/src --fix",
"build:sw": "node ./scripts/build-sw.js",
"build:ts": "node ./scripts/build-ts.js",
"build:docs": "node ./scripts/build-docs.js",
"build:i18n": "node ./scripts/build-i18n.js",
"trans:docs": "node ./scripts/trans-docs.js",
"create:plugin": "node ./scripts/plugin/create.js",
"dev": "npx cross-env NODE_ENV=development node ./scripts/dev.js",
"build": "npx cross-env NODE_ENV=production node ./scripts/build.js",
"prettier": "npx prettier --write .",
"postinstall": "npx lerna run prepare",
"bootstrap": "npx lerna link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhw2590582/ArtPlayer.git"
},
"keywords": [
"video",
"player"
],
"author": "Harvey Zack <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhw2590582/ArtPlayer/issues"
},
"homepage": "https://artplayer.org",
"browserslist": "last 1 Chrome version",
"dependencies": {
"@parcel/config-default": "^2.12.0",
"@parcel/core": "^2.12.0",
"@parcel/optimizer-data-url": "^2.12.0",
"@parcel/reporter-cli": "^2.12.0",
"@parcel/transformer-inline-string": "^2.12.0",
"@parcel/transformer-less": "^2.12.0",
"axios": "^1.7.2",
"cpy": "^11.0.1",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.6.0",
"glob": "^11.0.0",
"globals": "^15.8.0",
"lerna": "^8.1.5",
"prettier": "^3.3.2",
"prompts": "^2.4.2",
"servor": "^4.0.2",
"workbox-build": "^7.1.1"
},
"resolutions": {
"string-width": "4.2.3"
},
"engines": {
"node": ">= 20.0.0"
}
}