pnpm-viz 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>pnpm-viz</title>
7
+ <script type="module" crossorigin src="/assets/main-BkCAhqoF.js"></script>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ </body>
12
+ </html>
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "pnpm-viz",
3
+ "version": "1.0.1",
4
+ "description": "Visual companion for pnpm",
5
+ "main": "dist/cli/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "pnpm-viz": "./dist/cli/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsc && vite build",
16
+ "dev": "tsc --watch",
17
+ "start": "node dist/cli/index.js",
18
+ "lint": "eslint src --ext ts,tsx",
19
+ "test": "echo \"Error: no test specified\" && exit 1",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "keywords": [
23
+ "pnpm",
24
+ "visualization",
25
+ "graph",
26
+ "dependency-graph",
27
+ "heatmap",
28
+ "cli"
29
+ ],
30
+ "author": "dynamo36",
31
+ "license": "MIT",
32
+ "dependencies": {
33
+ "chalk": "^5.3.0",
34
+ "commander": "^12.0.0",
35
+ "cytoscape": "^3.28.1",
36
+ "ink": "^5.0.0",
37
+ "ink-big-text": "^2.0.0",
38
+ "js-yaml": "^4.1.0",
39
+ "open": "^10.0.0",
40
+ "react": "^18.2.0",
41
+ "react-dom": "^18.3.1"
42
+ },
43
+ "devDependencies": {
44
+ "@types/cytoscape": "^3.21.9",
45
+ "@types/js-yaml": "^4.0.9",
46
+ "@types/node": "^20.11.19",
47
+ "@types/react": "^18.2.55",
48
+ "@types/react-dom": "^18.3.7",
49
+ "@vitejs/plugin-react": "^4.2.1",
50
+ "eslint": "^8.56.0",
51
+ "ts-node": "^10.9.2",
52
+ "typescript": "^5.3.3",
53
+ "vite": "^5.1.3"
54
+ }
55
+ }