-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 740 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "103-early-anti-adblock",
"version": "1.0.0",
"description": "Detect adblockers using HTTP 103",
"main": "src/index.ts",
"scripts": {
"serve": "ts-node src/index.ts",
"watch": "ts-node-dev --watch '*.ts' --respawn src/index.ts",
"certs": "mkdir certs && openssl req -x509 -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -keyout certs/privkey.pem -out certs/cert.pem",
"docker": "docker run -p 3000:3000 --rm -it $(docker build -q .)"
},
"author": "Mechazawa",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"@types/node": "^20.11.20",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"ts-node-dev": "^2.0.0"
}
}