forked from zhw2590582/ArtPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.92 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
{
"name": "artplayer-packages",
"type": "module",
"version": "6.0.0",
"private": true,
"description": "ArtPlayer.js is a modern and full featured HTML5 video player",
"workspaces": [
"packages/*"
],
"author": "Harvey Zhao <laozhaochaguan@gmail.com>",
"license": "MIT",
"homepage": "https://artplayer.org",
"repository": {
"type": "git",
"url": "git+https://github.com/zhw2590582/ArtPlayer.git"
},
"bugs": {
"url": "https://github.com/zhw2590582/ArtPlayer/issues"
},
"keywords": [
"video",
"player"
],
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"bootstrap": "npx lerna link",
"postinstall": "npx lerna run prepare",
"build:ts": "node ./scripts/build-ts.js",
"build:llm": "node ./scripts/build-llm.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",
"lint": "npx eslint packages/*/{src,types,package.json} scripts/*.js test/* docs/assets/ts/* --fix",
"build:all": "npm run build all && npm run build:i18n && npm run build:ts && npm run build:docs && npm run lint"
},
"browserslist": "last 1 Chrome version",
"dependencies": {
"@antfu/eslint-config": "^5.1.0",
"@parcel/config-default": "^2.15.4",
"@parcel/core": "^2.15.4",
"@parcel/optimizer-data-url": "^2.15.4",
"@parcel/reporter-cli": "^2.15.4",
"@parcel/transformer-inline-string": "^2.15.4",
"@parcel/transformer-less": "^2.15.4",
"cpy": "^11.1.0",
"cross-env": "^10.0.0",
"cross-spawn": "^7.0.6",
"dotenv": "^17.2.1",
"eslint": "^9.32.0",
"glob": "^11.0.3",
"lerna": "^8.2.3",
"prompts": "^2.4.2",
"servor": "^4.0.2",
"svgo": "^4.0.0"
}
}