-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "@lightfastai/viewsrc",
"description": "Detect the tech stack of any website through HTTP headers, DNS, scripts, and browser signals",
"license": "MIT",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"viewsrc": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist node_modules",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/node": "^20.16.11",
"@vitest/coverage-v8": "^4.0.18",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"tech-stack",
"detection",
"website",
"scanner",
"wappalyzer",
"builtwith",
"fingerprint"
]
}