-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
109 lines (109 loc) · 2.74 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "azot",
"version": "0.8.3",
"description": "The ultimate toolkit for pentesting DRM systems",
"type": "module",
"files": [
"dist",
"scripts"
],
"main": "dist/lib/main.cjs",
"module": "dist/lib/main.js",
"bin": {
"azot": "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/vitalygashkov/azot"
},
"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/vitalygashkov/azot/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 || 21 || 22 || 23"
},
"dependencies": {
"@fastify/helmet": "^13.0.0",
"@fastify/rate-limit": "^10.2.1",
"@fastify/sensible": "^6.0.1",
"@fastify/type-provider-typebox": "^5.1.0",
"@sinclair/typebox": "^0.34.11",
"fastify": "^5.1.0",
"jsrsasign": "^11.1.0",
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@solidjs/router": "^0.14.10",
"@types/jsrsasign": "^10.5.14",
"@types/node": "^22.7.5",
"@wxt-dev/module-solid": "^1.1.2",
"autoprefixer": "^10.4.17",
"clsx": "^2.1.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"postcss": "^8.4.33",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.1",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.9.0",
"vite-plugin-arraybuffer": "^0.0.8",
"vitest": "^2.1.3",
"wxt": "^0.19.11"
}
}