-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.46 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": "@blackbelt-technology/pi-flows",
"version": "0.5.0",
"description": "Flow engine, dashboard, and orchestration extensions for pi",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackBeltTechnology/pi-flows.git"
},
"keywords": [
"pi-package"
],
"type": "module",
"main": "./extensions/index.ts",
"exports": {
".": "./extensions/index.ts",
"./testing": "./extensions/flow-engine/testing.ts"
},
"pi": {
"extensions": [
"./extensions"
]
},
"files": [
"extensions/",
"agents/",
"skills/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"yaml": "^2.8.0"
},
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.84.1 <1.0.0",
"@earendil-works/pi-coding-agent": ">=0.84.1 <1.0.0",
"@earendil-works/pi-tui": ">=0.84.1 <1.0.0",
"@sinclair/typebox": "^0.34.49"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.86.1",
"@earendil-works/pi-coding-agent": "^0.86.1",
"@earendil-works/pi-tui": "^0.86.1",
"@eslint/js": "^10.0.1",
"@sinclair/typebox": "^0.34.49",
"@types/node": "^25.8.0",
"eslint": "^10.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.0.0"
},
"scripts": {
"lint": "eslint extensions __tests__",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
}
}