-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 941 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 941 Bytes
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
{
"name": "keviq-core",
"version": "0.1.0",
"private": true,
"description": "Keviq Core — Agent OS for AI agent orchestration",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "python -m pytest tools/arch-test/ -v",
"arch-test": "python -m pytest tools/arch-test/ -v",
"dep-check": "depcruise apps packages --config .dependency-cruiser.js",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"e2e:report": "npx playwright show-report tests/e2e/report"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Keviqai/keviq-core.git"
},
"packageManager": "pnpm@10.22.0",
"devDependencies": {
"dependency-cruiser": "^17.3.8",
"turbo": "^2.8.16",
"typescript": "^5.9.3"
},
"dependencies": {
"remark-gfm": "^4.0.1"
}
}