-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "aspens",
"version": "0.8.0",
"description": "Keep coding-agent context accurate as your codebase changes",
"type": "module",
"bin": {
"aspens": "bin/cli.js"
},
"main": "./src/index.js",
"files": [
"bin/",
"src/"
],
"keywords": [
"claude-code",
"orchestrator",
"cli",
"documentation",
"skills"
],
"license": "MIT",
"scripts": {
"test": "vitest run",
"start": "node bin/cli.js",
"lint": "echo 'No linter configured yet' && exit 0",
"postinstall": "echo '\n 📌 aspens v0.8.0: Skill triggers moved from `## Activation` to YAML frontmatter `triggers:` (back-compat preserved). Domain clusters restored to `code-map.md` (language-agnostic). AGENTS.md no longer drops unchanged skills on partial `doc sync`. Code-map.md is now churn-stable across syncs.\n Re-run `aspens doc sync` to regenerate skills with the new triggers format.\n\n 🌲 aspens is in active development — please keep it up to date.\n Run into issues? Let us know: https://github.com/aspenkit/aspens/issues\n'"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@clack/prompts": "^0.8.0",
"commander": "^12.0.0",
"es-module-lexer": "^2.0.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"vitest": "^4.1.3"
}
}