-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "opentrust",
"version": "0.1.0",
"private": true,
"description": "Local-first OpenClaw traceability, workflows, and capability intelligence.",
"scripts": {
"bdev": "next build && next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"check": "pnpm run typecheck",
"test": "vitest run",
"db:init": "tsx scripts/init-db.ts",
"ingest:openclaw": "tsx scripts/ingest-openclaw.ts",
"ingest:cron": "tsx scripts/ingest-cron.ts",
"index:semantic": "tsx scripts/index-semantic.ts",
"secrets:check": "secretlint --secretlintrc .secretlintrc.json \"**/*\"",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@create-markdown/core": "^2.0.0",
"@create-markdown/react": "^2.0.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@paper-design/shaders-react": "^0.0.72",
"@radix-ui/react-dialog": "^1.1.15",
"@tabler/icons-react": "^3.40.0",
"@tanstack/react-table": "^8.21.3",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.511.0",
"motion": "^12.38.0",
"next": "16.2.5",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"recharts": "^2.15.4",
"shiki": "^4.0.2",
"sonner": "^2.0.7",
"sqlite-vec": "^0.1.7",
"tailwind-merge": "^3.5.0",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@secretlint/core": "^11.4.0",
"@secretlint/secretlint-rule-preset-recommend": "^11.4.0",
"@tailwindcss/postcss": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"secretlint": "^11.4.0",
"shadcn": "^4.1.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"vitest": "^4"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"msw"
]
}
}