forked from MonsieurBarti/visual-explainer-pi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.69 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
{
"name": "@the-forge-flow/visual-explainer-pi",
"version": "0.2.4",
"description": "PI extension for generating beautiful HTML visualizations of diagrams, architecture, and data",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format .",
"format:fix": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check . --write",
"typecheck": "tsc --noEmit",
"prepare": "lefthook install || true"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@sinclair/typebox": "^0.34.0",
"@types/node": "^22.0.0",
"lefthook": "^2.1.5",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-tui": "*",
"@sinclair/typebox": "*"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"pi-package",
"pi",
"extension",
"visualization",
"diagrams",
"architecture",
"html",
"mermaid"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/monsieurbarti/visual-explainer-pi.git"
},
"bugs": {
"url": "https://github.com/monsieurbarti/visual-explainer-pi/issues"
},
"homepage": "https://github.com/monsieurbarti/visual-explainer-pi#readme",
"publishConfig": {
"access": "public"
},
"pi": {
"extensions": [
"./dist/index.js"
]
}
}