-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.74 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "okova",
"version": "0.10.6",
"description": "Advanced DRM inspection toolkit",
"type": "module",
"files": [
"dist",
"scripts"
],
"main": "dist/lib/main.cjs",
"module": "dist/lib/main.js",
"bin": {
"okova": "dist/cli/main.cjs"
},
"scripts": {
"prepublishOnly": "npm run build:lib && npm run build:cli",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "npm run build:lib && npm run build:cli && npm run build:chrome",
"build:lib": "tsup --config tsup.lib.config.ts",
"build:cli": "tsup --config tsup.cli.config.ts",
"build:chrome": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "node scripts/postinstall.js",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/azot-labs/okova"
},
"keywords": [
"widevine",
"drm",
"google",
"pssh",
"eme",
"encrypted-media-extensions",
"media"
],
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
"license": "AGPL-3.0",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/azot-labs/okova/issues",
"email": "vitalygashkov@vk.com"
},
"funding": [
{
"type": "individual",
"url": "https://boosty.to/vitalygashkov"
},
{
"type": "patreon",
"url": "https://www.patreon.com/vitalygashkov"
}
],
"exports": {
".": {
"require": {
"types": "./dist/lib/main.d.cts",
"default": "./dist/lib/main.cjs"
},
"import": {
"types": "./dist/lib/main.d.ts",
"default": "./dist/lib/main.js"
}
}
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@hono/node-server": "^1.19.5",
"@hono/zod-validator": "^0.7.4",
"@noble/curves": "^1.9.2",
"@xmldom/xmldom": "^0.9.8",
"barsic": "^0.2.0",
"hono": "^4.10.1",
"jsrsasign": "^11.1.0",
"protobufjs": "^7.5.4",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@solidjs/router": "^0.15.3",
"@tailwindcss/postcss": "^4.1.14",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^24.8.1",
"@wxt-dev/module-solid": "^1.1.4",
"clsx": "^2.1.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.9",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.14",
"tsdown": "^0.15.8",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.10",
"vite-plugin-arraybuffer": "^0.1.1",
"vitest": "^3.2.4",
"wxt": "^0.20.11"
}
}