-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.26 KB
/
package.json
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
{
"name": "media-captions",
"version": "1.0.4",
"description": "Media captions parser and renderer.",
"license": "MIT",
"type": "module",
"main": "./dist/prod.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"jsdelivr": "./dist/prod.js",
"engines": {
"node": ">=16"
},
"files": [
"*.d.ts",
"dist/",
"styles/"
],
"scripts": {
"dev": "pnpm clean && rollup -c -w & pnpm run types -w",
"build": "pnpm clean && rollup -c && pnpm types",
"types": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"format": "prettier src --write --loglevel warn",
"changelog": "pnpm exec git cliff --output CHANGELOG.md",
"test": "vitest --run",
"test:watch": "vitest --watch --single-thread",
"sandbox": "node ./.sandbox/launch.js",
"release": "pnpm validate && pnpm changelog && git push --follow-tags origin main && npm publish --tag next",
"validate": "pnpm test && pnpm build"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.0",
"acorn": "^8.8.2",
"acorn-walk": "^8.2.0",
"conventional-changelog-cli": "^4.1.0",
"esbuild": "^0.18.1",
"git-cliff": "^1.4.0",
"magic-string": "^0.30.0",
"prettier": "^2.8.4",
"rimraf": "^4.4.1",
"rollup": "^3.25.1",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.5.0",
"typescript": "^5.0.0",
"undici": "^5.21.0",
"vite": "^4.2.0",
"vitest": "^0.29.0"
},
"contributors": [
"Rahim Alwer <rahim.alwer@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/vidstack/media-captions.git"
},
"bugs": {
"url": "https://github.com/vidstack/media-captions/issues"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"test": "./dist/dev.js",
"development": "./dist/dev.js",
"default": "./dist/prod.js"
},
"./styles/*": "./styles/*",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ass",
"captions",
"cues",
"engine",
"fast",
"lightweight",
"media",
"parser",
"player",
"regions",
"srt",
"ssa",
"streaming",
"text-tracks",
"ts",
"typescript",
"video",
"vidstack",
"vtt",
"web"
]
}