-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.94 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
{
"name": "codex-keeper",
"version": "0.1.0",
"description": "sitJac/codex-keeper is a local-first Codex session browser with manual rename and delete support.",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"keywords": [
"codex",
"session",
"rename",
"sqlite",
"webui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sitJac/codex-keeper.git"
},
"homepage": "https://github.com/sitJac/codex-keeper#readme",
"bugs": {
"url": "https://github.com/sitJac/codex-keeper/issues"
},
"author": "sitJac",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"build:runtime": "tsc -b packages/shared packages/core packages/api packages/cli",
"clean": "rm -rf packages/*/dist packages/*/dist-ts packages/*/*.tsbuildinfo coverage",
"cli": "npm run build:runtime && node packages/cli/dist/index.js",
"api": "npm run build:runtime && node packages/api/dist/index.js",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"validate:full": "npm run lint && npm run build && npm run build:runtime && npm run web:build && npm test",
"check": "npm run validate:full",
"hooks:install": "node scripts/install-hooks.mjs",
"prepare": "node scripts/install-hooks.mjs",
"server": "npm run serve",
"serve": "npm run build:runtime && npm run web:build && node packages/cli/dist/index.js serve",
"web": "tsx scripts/launch-ui.ts web",
"web:raw": "npm run dev --workspace @codex-keeper/web",
"web:build": "npm run build --workspace @codex-keeper/web",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.6.0",
"lefthook": "^2.1.5",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}