-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.97 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
{
"name": "pagespace-cli",
"version": "0.1.0",
"type": "module",
"workspaces": [
"packages/*"
],
"description": "The PageSpace coding harness — deterministic AIDD primitives with PageSpace as the filesystem, model brain, memory, and task board.",
"keywords": [
"pagespace",
"coding-harness",
"aidd"
],
"repository": {
"type": "git",
"url": "https://github.com/2witstudios/pagespace-cli.git"
},
"homepage": "https://github.com/2witstudios/pagespace-cli#readme",
"bugs": {
"url": "https://github.com/2witstudios/pagespace-cli/issues"
},
"scripts": {
"postinstall": "npm run build",
"build": "npm run build -w packages/pi-tui -w packages/pi-ai -w packages/pi-agent-core -w packages/pi-coding-agent",
"typecheck": "tsc --noEmit -p .",
"lint": "biome check src extensions test",
"format": "biome format --write src extensions test",
"test": "tsx --test --test-reporter=dot test/unit/*.test.ts",
"test:live": "tsx test/run-ops.ts && tsx test/run-grep.ts && tsx test/run-context.ts && tsx test/run-retrieval.ts && tsx test/run-persistence.ts && tsx test/run-compaction.ts && tsx test/run-requirements.ts && tsx test/run-review.ts && tsx test/run-fix.ts && tsx test/run-spec.ts && tsx test/run-gate.ts && tsx test/run-complete.ts && tsx test/run-build.ts && tsx test/run-churn.ts && tsx test/load-ext.ts && tsx test/run-provider.ts",
"check": "npm run typecheck && npm run lint && npm run test",
"prepare": "husky"
},
"dependencies": {
"tsx": "^4.19.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@earendil-works/pi-ai": "workspace:*",
"@earendil-works/pi-coding-agent": "workspace:*",
"@typescript/native-preview": "7.0.0-dev.20260120.1",
"husky": "^9.1.7",
"typebox": "^1.1.39",
"typescript": "^5.9.3"
},
"bin": {
"pagespace": "./bin/pagespace.mjs"
},
"files": [
"extensions",
"src",
"skills",
"prompts",
"bin",
"packages",
"README.md"
]
}