-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2 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
{
"author": "Livery Video",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"lit": "^3.3.2",
"zod": "^4.3.6"
},
"description": "Livery Video Interactive Bridge.",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@liveryvideo/biome-lit": "^2.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"browserslist-to-esbuild": "^2.1.1",
"eslint": "^9.39.2",
"git-branch-is": "^4.0.0",
"happy-dom": "^20.3.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"semantic-release": "^25.0.2",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-no-inherit": "^1.6.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "4.5.0",
"vitest": "^4.0.18"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
},
"files": [
"CHANGELOG.md",
"dist"
],
"homepage": "https://www.liveryvideo.com/",
"license": "MIT",
"lint-staged": {
"*": [
"biome check --fix --no-errors-on-unmatched",
"eslint --fix"
]
},
"main": "dist/index.umd.js",
"module": "dist/index.js",
"name": "@liveryvideo/interactive-bridge",
"publishConfig": {
"access": "public"
},
"repository": "github:liveryvideo/interactive-bridge",
"scripts": {
"build": "vite build",
"build:lib": "vite build -m lib:bundler && vite build -m lib:browser --emptyOutDir false && npm run build:lib:doc",
"build:lib:doc": "typedoc && mv dist/doc/* dist/ && rm -rf dist/doc",
"dev": "vite",
"lint": "biome check && eslint && tsc",
"lint:fix": "eslint --fix && biome check --fix",
"prepare": "husky",
"prepublishOnly": "npm run build:lib",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.17.0"
}