-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "blueprint",
"version": "0.0.2",
"description": "Blueprint is a simple CLI tool that parses your frontend codebase and generates visual diagrams of your pages, components, and structure — like a blueprint for your app.",
"main": "dist/cli/index.js",
"bin": {
"blueprint": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/cli/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AryanChawla1/blueprint.git"
},
"author": "Aryan Chawla Dora <aryanchawlad@gmail.com> (https://www.aryanchawla.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/AryanChawla1/blueprint/issues"
},
"homepage": "https://github.com/AryanChawla1/blueprint#readme",
"devDependencies": {
"@babel/traverse": "^7.27.3",
"@types/node": "^22.15.21",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@babel/parser": "^7.27.3",
"@babel/types": "^7.27.3",
"@types/babel__traverse": "^7.20.7",
"canvas": "^3.1.0",
"chalk": "^5.4.1"
}
}