-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.49 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.49 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
{
"name": "stackscan",
"version": "0.1.29",
"description": "Automatically detect tech stacks from repositories and generate logos, JSON, and markdown for portfolios.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"stackscan": "dist/cli.js"
},
"scripts": {
"build": "tsup src --format cjs,esm --dts --shims",
"dev": "tsup src --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"scan": "ts-node src/scan.ts",
"start": "node dist/cli.js"
},
"keywords": [
"tech-stack",
"cli",
"portfolio",
"scanner",
"typescript",
"logos"
],
"author": "Benjamin Elliott",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benjamindotdev/stackscan.git"
},
"files": [
"dist",
"public",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/benjamindotdev/stackscan#readme",
"bugs": {
"url": "https://github.com/benjamindotdev/stackscan/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"cosmiconfig": "^9.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lucide-static": "^0.555.0",
"ora": "^7.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.18",
"simple-icons": "^15.22.0",
"tsup": "^8.0.1",
"typescript": "^5.6.3",
"vitest": "^4.0.18"
}
}