-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.39 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
{
"name": "@interactive-video-labs/angular",
"version": "0.2.0",
"type": "module",
"description": "Thin Angular wrapper for the @interactive-video-labs/core engine. Enables cue-based interactive video playback in Angular applications.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "pnpm lint --fix && pnpm format && pnpm build "
},
"keywords": [
"interactive-video",
"angular",
"angular-component",
"typescript",
"video-player",
"cue-points",
""
],
"author": "Taj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interactive-video-labs/interactive-video-angular-wrapper.git"
},
"homepage": "https://github.com/interactive-video-labs/interactive-video-angular-wrapper#readme",
"bugs": {
"url": "https://github.com/interactive-video-labs/interactive-video-angular-wrapper/issues"
},
"packageManager": "pnpm@10.24.0",
"peerDependencies": {
"@angular/common": "~19.0.0 || ~19.2.0 || ~20.1.0 || ~20.2.0 || ~20.3.0 || ~21.0.0",
"@angular/core": "~19.0.0 || ~19.2.0 || ~20.1.0 || ~20.2.0 || ~20.3.0 || ~21.0.0",
"@interactive-video-labs/core": "^0.1.4 || ^0.2.0"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"prettier": "^3.6.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"@analogjs/vite-plugin-angular": "^2.0.0",
"@angular-devkit/build-angular": "~21.0.0",
"@angular/common": "~21.0.0",
"@angular/compiler": "~21.0.0",
"@angular/compiler-cli": "~21.0.0",
"@angular/core": "~21.0.0",
"@angular/platform-browser": "~21.0.0",
"@angular/platform-browser-dynamic": "~21.0.0",
"jsdom": "^27.0.0",
"tsup": "^8.5.0",
"typescript": "5.9.3",
"vitest": "^4.0.0",
"zone.js": "^0.16.0",
"rimraf": "^6.0.0"
}
}