-
-
Notifications
You must be signed in to change notification settings - Fork 352
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 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.1.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",
"build:test": "node ./scripts/build-test.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",
"cpy": "^13.2.1",
"cross-env": "^10.0.0",
"cross-spawn": "^7.0.6",
"dotenv": "^17.2.1",
"esbuild": "^0.27.3",
"eslint": "^9.32.0",
"eslint-plugin-format": "^2.0.1",
"glob": "^13.0.6",
"lerna": "^8.2.3",
"less": "^4.5.1",
"prompts": "^2.4.2",
"servor": "^4.0.2",
"svgo": "^4.0.1",
"terser": "^5.46.0",
"vite": "^7.3.1"
}
}