-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.66 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.66 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
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
{
"name": "plugin-vulnerability-scanner",
"version": "1.0.0",
"description": "A security vulnerability scanner for plugin architectures",
"type": "module",
"homepage": "https://dmontgomery40.github.io/SecurityLens/",
"main": "src/index.js",
"bin": {
"securitylens": "./src/cli/index.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0 --port 4173",
"start": "node src/cli/index.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"clean": "rimraf dist",
"test": "jest",
"build:functions": "esbuild netlify/functions/scan-webpage-source.js --bundle --platform=node --target=node18 --format=esm --outfile=netlify/functions/scan-webpage.mjs"
},
"dependencies": {
"@octokit/core": "^6.1.5",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@octokit/rest": "^19.0.13",
"@radix-ui/react-alert-dialog": "1.1.0",
"@tailwindcss/typography": "^0.5.16",
"axios": "^1.8.3",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"class-variance-authority": "0.7.0",
"clsx": "2.0.0",
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"fs-extra": "^11.2.0",
"jose": "^5.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.263.1",
"node-fetch": "^3.3.2",
"octokit": "^4.0.3",
"rate-limiter-flexible": "^4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^7.5.2",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"tailwind-merge": "1.14.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.17.0",
"@netlify/functions": "^2.4.1",
"@types/crypto-js": "^4.2.1",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@vitejs/plugin-react": "4.0.3",
"assert": "^2.1.0",
"autoprefixer": "10.4.14",
"babel-jest": "^29.7.0",
"buffer": "^6.0.3",
"chai": "^5.1.2",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.1",
"esbuild": "^0.19.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"gh-pages": "^6.2.0",
"globals": "^15.14.0",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"jest": "^29.7.0",
"netlify-cli": "^17.38.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"postcss": "8.4.27",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"stream-browserify": "^3.0.0",
"tailwindcss": "3.3.3",
"terser": "^5.26.0",
"util": "^0.12.5",
"vite": "4.4.5"
},
"directories": {
"test": "tests"
},
"keywords": [],
"author": "",
"license": "ISC"
}