-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "xean",
"version": "1.1.1",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/solve"
],
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3.13"
},
"files": [
"src",
"patches",
"vendor",
"LICENSE",
"README.md",
"SPEC.md",
"docs/application-author.md",
"examples"
],
"exports": {
".": "./src/index.ts",
"./pi": "./src/pi.ts",
"./observe": "./src/observe.ts"
},
"scripts": {
"format": "prettier --write . --ignore-path .prettierignore",
"format:check": "prettier --check . --ignore-path .prettierignore",
"typecheck": "tsc --noEmit",
"typecheck:consumer": "tsc --noEmit -p tests/consumer/tsconfig.json",
"test": "bun test ./tests --path-ignore-patterns='runs/**'",
"pack:check": "bun scripts/check-package.ts",
"e2e:roles": "bun run --cwd packages/solve e2e:roles",
"debug": "bun ../xean-lab/src/cli.ts debug --xean-root .",
"check": "bun run format:check && bun run typecheck && bun run typecheck:consumer && bun run test && bun run pack:check",
"check:solve": "bun run --cwd packages/solve check",
"check:all": "bun run check && bun run check:solve"
},
"dependencies": {
"@earendil-works/pi-agent-core": "0.85.1",
"@earendil-works/pi-ai": "0.85.1",
"zod": "4.5.4"
},
"devDependencies": {
"@types/bun": "1.3.14",
"prettier": "3.9.6",
"typescript": "7.0.2"
},
"bundledDependencies": [
"@earendil-works/pi-ai"
],
"overrides": {
"tar": "^7.5.7",
"@earendil-works/pi-ai": "file:vendor/pi-ai-0.85.1-xean.1.tgz"
}
}