-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "chronicle",
"version": "1.0.4",
"description": "AI-native development memory — markdown RAG for every AI coding tool",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/core && npm run build -w packages/cli",
"dev": "npm run dev -w packages/cli",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:python": "cd packages/python && .venv/bin/pytest tests/ -v",
"test:all": "npm test && npm run test:python",
"sync-python-version": "node scripts/sync-python-version.js",
"release": "npm run sync-python-version && npm run test:all && npm run build"
},
"engines": {
"node": ">=20"
}
}