-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "@criteo/video-player",
"type": "module",
"main": "dist/criteo-video-player.es.js",
"types": "dist/types/index.d.ts",
"version": "1.4.1",
"description": "Lightweight video player with ad support",
"scripts": {
"build": "vite build",
"serve": "http-server . -p 8080",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@preact/preset-vite": "^2.9.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/node": "^22.5.5",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-preact": "^2.0.0",
"http-server": "^14.1.1",
"jsdom": "^27.4.0",
"playwright": "^1.47.1",
"typescript": "^5.6.2",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16"
},
"eslintConfig": {
"extends": "preact"
},
"peerDependencies": {
"preact": "^10.28.2"
},
"repository": {
"type": "git",
"url": "https://github.com/criteo/video-ad-player.git"
}
}