This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "@noscrape/noscrape",
"version": "2.1.1",
"description": "protect your content from scraping",
"homepage": "https://noscrape-example.vercel.app",
"keywords": [
"scraping",
"noscrape",
"crawler",
"websecurity",
"scrape",
"obfuscation",
"obfuscate",
"defend",
"protection"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "npx playwright test",
"demo": "ts-node example/demo.ts"
},
"author": "Bernhard Schönberger",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/schoenbergerb/noscrape"
},
"dependencies": {
"lodash": "^4.17.21",
"opentype.js": "^1.3.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@playwright/test": "^1.41.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.11",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"express": "^4.18.2",
"jest": "^29.7.0",
"playwright-core": "^1.41.1",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}