-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 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
{
"name": "basesec",
"version": "0.1.1",
"description": "SAST CLI tool for detecting vulnerabilities in Node.js backends",
"type": "module",
"main": "dist/index.js",
"bin": {
"basesec": "dist/index.js"
},
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tavotsu/BaseSec.git"
},
"bugs": {
"url": "https://github.com/Tavotsu/BaseSec/issues"
},
"homepage": "https://github.com/Tavotsu/BaseSec#readme",
"files": [
"dist/"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "tavotsu",
"license": "MIT",
"packageManager": "pnpm@11.0.9",
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"vitest": "^4.1.5"
},
"dependencies": {
"cac": "^7.0.0",
"cli-table3": "^0.6.5",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1",
"typescript": "^6.0.3"
}
}