-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.65 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.65 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
{
"name": "kindling-monorepo",
"version": "0.1.3",
"type": "module",
"private": true,
"description": "Local memory and continuity engine for AI-assisted development",
"keywords": [
"ai",
"memory",
"context",
"llm",
"agent",
"continuity",
"local-first",
"sqlite",
"fts",
"opencode",
"pocketflow"
],
"author": "EddaCraft <hello@eddacraft.ai>",
"homepage": "https://github.com/EddaCraft/kindling#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EddaCraft/kindling.git"
},
"bugs": {
"url": "https://github.com/EddaCraft/kindling/issues"
},
"license": "Apache-2.0",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"type-check": "pnpm -r run type-check",
"clean": "pnpm -r run clean && rm -rf node_modules",
"publish:dry-run": "pnpm run build && pnpm run test && pnpm -r publish --dry-run --no-git-checks",
"publish:release": "pnpm run build && pnpm run test && pnpm -r publish",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"oxfmt"
],
"*.{json,md,yml,yaml}": [
"oxfmt"
]
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.11.0",
"esbuild": "^0.27.3",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.45.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}