adgent-sdk 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "adgent-sdk",
3
+ "version": "0.1.1",
4
+ "description": "Lightweight, framework-agnostic VAST Player SDK for Smart TV platforms",
5
+ "type": "module",
6
+ "main": "./dist/adgent-sdk.umd.js",
7
+ "module": "./dist/adgent-sdk.es.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/adgent-sdk.es.js",
12
+ "require": "./dist/adgent-sdk.umd.js",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "tsc && vite build",
22
+ "preview": "vite preview",
23
+ "typecheck": "tsc --noEmit",
24
+ "test": "vitest run",
25
+ "test:watch": "vitest",
26
+ "test:coverage": "vitest run --coverage"
27
+ },
28
+ "keywords": [
29
+ "vast",
30
+ "video-ads",
31
+ "smart-tv",
32
+ "webos",
33
+ "tizen",
34
+ "vidaa",
35
+ "sdk"
36
+ ],
37
+ "author": "",
38
+ "license": "UNLICENSED",
39
+ "dependencies": {
40
+ "fast-xml-parser": "^4.3.4"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^20.11.0",
44
+ "@vitest/coverage-v8": "^1.2.0",
45
+ "happy-dom": "^13.3.1",
46
+ "typescript": "^5.3.3",
47
+ "vite": "^5.0.12",
48
+ "vite-plugin-dts": "^3.7.1",
49
+ "vitest": "^1.2.0"
50
+ }
51
+ }