-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 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
74
75
76
77
78
{
"name": "first-tree",
"version": "0.3.2",
"description": "CLI tools for Context Tree — the living source of truth for your organization.",
"homepage": "https://github.com/agent-team-foundation/first-tree#readme",
"bugs": {
"url": "https://github.com/agent-team-foundation/first-tree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-team-foundation/first-tree.git"
},
"keywords": [
"first-tree",
"context-tree",
"cli",
"agents",
"knowledge-base",
"markdown"
],
"type": "module",
"bin": {
"first-tree": "dist/cli.js"
},
"imports": {
"#products/*": "./src/products/*",
"#meta/*": "./src/meta/*",
"#shared/*": "./src/shared/*",
"#skill/*": "./skills/first-tree/*",
"#evals/*": "./evals/*",
"#src/*": "./src/*"
},
"files": [
"dist",
"src/products/tree/VERSION",
"src/products/breeze/VERSION",
"src/products/gardener/VERSION",
"src/meta/skill-tools/VERSION",
"skills/first-tree",
"skills/tree",
"skills/breeze",
"skills/gardener",
"assets"
],
"scripts": {
"version:check": "node scripts/sync-version.js",
"build": "tsdown",
"prepack": "pnpm build",
"test:e2e": "vitest run tests/e2e/cli-e2e.test.ts",
"test:dist": "FIRST_TREE_DIST_TESTS=1 vitest run tests/dist",
"test:release": "FIRST_TREE_RELEASE_TESTS=1 vitest run tests/release",
"test:agent": "FIRST_TREE_AGENT_TESTS=1 vitest run tests/agent-e2e",
"test": "vitest run",
"eval": "vitest run --config vitest.eval.config.ts",
"typecheck": "tsc --noEmit",
"validate:skill": "python3 ./scripts/quick_validate.py ./skills/first-tree && bash ./scripts/check-skill-sync.sh",
"release:check": "pnpm version:check && pnpm validate:skill && pnpm typecheck && pnpm test && pnpm build && pnpm test:dist && pnpm test:release",
"prepublishOnly": "pnpm release:check"
},
"packageManager": "pnpm@10.25.0",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^19.2.14",
"ink-testing-library": "^4.0.0",
"tsdown": "^0.12.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
},
"dependencies": {
"ink": "^7.0.0",
"proper-lockfile": "^4.1.2",
"react": "^19.2.5",
"yaml": "^2.8.3",
"zod": "^4.3.6"
}
}