-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "decoding-info",
"version": "1.0.1",
"description": "Testing audio and video codec support in a browser with or without a key system",
"type": "module",
"main": "src/index.common.js",
"module": "src/index.esm.js",
"typings": "src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"clean": "del ./dist/*",
"build": "npm run clean && rollup --config rollup.config.mjs && cp -f ./dist/index.esm.js ./pages",
"test": "jest . && npm run typecheck",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"keywords": [
"media",
"codec",
"decoding",
"browser",
"media-capabilities"
],
"author": "Denis Seleznev <hcodes@yandex.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vvideo/decoding-info.git"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"del-cli": "^7.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rollup": "4.56.0",
"ts-jest": "^29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}