-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.17 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.17 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "openplayerjs",
"version": "3.0.2",
"description": "HTML5 video and audio player — monorepo root",
"private": true,
"author": {
"name": "Rafael Miranda",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/openplayerjs/openplayerjs.git",
"type": "git"
},
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "husky",
"build": "pnpm run clean && pnpm run build:types && turbo run build:bundles build:css --force",
"build:types": "tsc -b tsconfig.references.json",
"build:bundles": "turbo run build:bundles",
"build:bundles:affected": "turbo run build:bundles --affected",
"build:css": "turbo run build:css",
"clean": "node -e \"const fs=require('fs'),p=require('path'),rm=x=>fs.rmSync(x,{recursive:true,force:true});if(fs.existsSync('packages'))for(const d of fs.readdirSync('packages',{withFileTypes:true}))if(d.isDirectory())rm(p.join('packages',d.name,'dist'));\"",
"lint": "pnpm run lint:packages && pnpm run lint:css",
"lint:packages": "eslint --cache packages",
"lint:css": "stylelint packages/player/src/style.css",
"test": "jest --coverage --passWithNoTests",
"test:affected": "turbo run test --affected",
"test:watch": "jest --watch --passWithNoTests",
"watch": "turbo run watch",
"watch:affected": "turbo run watch --affected",
"release": "node scripts/orchestrate-release.cjs",
"release:dry-run": "node scripts/orchestrate-release.cjs --dry-run",
"release:major": "node scripts/orchestrate-release.cjs --increment major",
"release:major:dry-run": "node scripts/orchestrate-release.cjs --increment major --dry-run",
"release:minor": "node scripts/orchestrate-release.cjs --increment minor",
"release:minor:dry-run": "node scripts/orchestrate-release.cjs --increment minor --dry-run",
"release:patch": "node scripts/orchestrate-release.cjs --increment patch",
"release:patch:dry-run": "node scripts/orchestrate-release.cjs --increment patch --dry-run",
"release:pack": "pnpm -r --filter @openplayerjs/core --filter @openplayerjs/player --filter @openplayerjs/hls --filter @openplayerjs/ads --filter @openplayerjs/youtube pack --pack-destination ./packed",
"lint:affected": "turbo run lint --affected",
"type-check": "tsc --noEmit -p tsconfig.typecheck.json",
"preflight": "node scripts/preflight.cjs",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@playwright/test": "1.59.1",
"@release-it-plugins/workspaces": "5.0.3",
"@release-it/conventional-changelog": "10.0.6",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"cssnano": "7.1.4",
"dotenv-cli": "11.0.0",
"eslint": "10.1.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"hls.js": "1.6.16",
"husky": "9.1.7",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"lint-staged": "16.4.0",
"postcss": "8.5.8",
"postcss-cli": "11.0.1",
"postcss-preset-env": "11.2.0",
"prettier": "3.8.2",
"release-it": "19.2.4",
"rollup": "4.60.1",
"serve": "14.2.6",
"stylelint": "17.6.0",
"stylelint-order": "8.1.1",
"ts-jest": "29.4.9",
"tslib": "2.8.1",
"turbo": "2.8.21",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2"
},
"engines": {
"pnpm": "10.32.1",
"node": ">=24.14.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@xmldom/xmldom": "0.9.10",
"basic-ftp": "5.3.0",
"brace-expansion": "5.0.5",
"defu": "6.1.7",
"picomatch": "4.0.4",
"undici": "7.25.0"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint-plugin-import>eslint": "^10"
}
}
}
}