-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "frontguard-cli",
"version": "0.3.0",
"description": "Frontguard by Pubflow CLI for client-side security audits.",
"type": "module",
"bin": {
"frontguard": "./dist/index.js",
"fguard": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^14.0.0",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1",
"playwright": "^1.56.0",
"zod": "^4.1.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"main": "index.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubflow/frontguard-cli.git"
},
"keywords": [
"Frontend-security",
"Client-side-security",
"cybersecurity"
],
"author": "Pubflow, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/pubflow/frontguard-cli/issues"
},
"homepage": "https://github.com/pubflow/frontguard-cli#readme"
}