-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 906 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 906 Bytes
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
{
"name": "@li0ard/pssh",
"version": "0.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": "li0ard",
"repository": {
"type": "git",
"url": "git+https://github.com/li0ard/pssh.git"
},
"bugs": {
"url": "https://github.com/li0ard/pssh/issues"
},
"homepage": "https://github.com/li0ard/pssh#readme",
"description": "Protection System Specific Header (PSSH) encoder and decoder",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsc --project tsconfig.build.json"
},
"devDependencies": {
"@types/bun": "latest",
"protoc-gen-ts": "^0.8.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"google-protobuf": "^4.0.1"
},
"files": ["dist"],
"publishConfig": {
"access": "public"
},
"keywords": ["cdm", "widevine", "google", "pssh"]
}