-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "@designcombo/frames",
"version": "0.0.3",
"private": false,
"repository": "https://github.com/designcombo/thumbnails",
"keywords": [
"webcodecs"
],
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/frames.js",
"main": "dist/frames.umd.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/frames.js",
"require": "./dist/frames.umd.cjs"
}
},
"scripts": {
"test": "vitest --config test-vite.config.ts",
"ci:test": "vitest --config test-vite.config.ts run",
"test:coverage": "vitest run --coverage",
"build": "vite build && tsc -p build.tsconfig.json --outDir dist",
"prepublishOnly": "pnpm build"
},
"files": [
"dist"
],
"dependencies": {
"@webav/mp4box.js": "0.5.3-fenghen",
"m3u8-parser": "^7.1.0",
"mp4box": "^0.5.2",
"opfs-tools": "^0.6.1",
"wave-resampler": "^1.0.0"
},
"devDependencies": {
"@types/dom-mediacapture-transform": "^0.1.5",
"@types/dom-webcodecs": "^0.1.11",
"@vitest/browser": "^1.6.0",
"@vitest/coverage-istanbul": "^1.6.0",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.2.3",
"vitest": "^1.6.0",
"webdriverio": "^8.39.0"
},
"publishConfig": {
"access": "public"
}
}