-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "@hazellin/chroniq",
"version": "0.1.0",
"description": "Local-first, CLI-first note capture for humans and agents",
"packageManager": "pnpm@10.14.0",
"type": "module",
"bin": {
"chroniq": "bin/chroniq.js",
"cq": "bin/chroniq.js"
},
"scripts": {
"clean": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
"build": "pnpm clean && tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"check": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test tests/**/*.test.ts",
"prepack": "pnpm build",
"release:check": "pnpm check && pnpm test && npm pack --dry-run",
"publish:dry-run": "npm publish --access public --dry-run",
"publish:npm": "npm publish --access public",
"iter:doc": "node ./scripts/generate-iteration-doc.mjs",
"iter:hook": "git config core.hooksPath .githooks"
},
"keywords": [
"chroniq",
"cli",
"agent",
"jsonl",
"log",
"local-first",
"terminal"
],
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"license": "MIT",
"author": "Hazel Lin",
"repository": {
"type": "git",
"url": "git+https://github.com/Hazel-Lin/chroniq.git"
},
"homepage": "https://github.com/Hazel-Lin/chroniq#readme",
"bugs": {
"url": "https://github.com/Hazel-Lin/chroniq/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^14.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
}
}