-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.7 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
{
"name": "@cordisx/agent-trace-showcase",
"version": "0.1.2",
"private": true,
"description": "Read-only CordisX Agent Trace Timeline plugin",
"license": "AGPL-3.0-or-later",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"assets/agent-trace.png",
"dist",
"README.md",
"README.zh-Hans.md",
"cordisx-package.json",
"runtime-manifest.json",
"legal"
],
"scripts": {
"icon:generate": "node scripts/generate-brand-icon.mjs",
"icon:check": "node scripts/generate-brand-icon.mjs --check",
"build": "node scripts/clean-dist.mjs && tsc -p tsconfig.json && node scripts/build-runtime-bundle.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"naming:check": "node scripts/check-public-naming.mjs",
"check": "npm run icon:check && npm run naming:check && npm run typecheck && npm run build && npm test && npm run naming:check && npm run pack:check",
"pack:check": "npm pack --dry-run",
"format": "dprint fmt",
"format:check": "dprint check",
"lint:source": "eslint .",
"lint": "eslint ."
},
"dependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/schemastery": "3.18.1",
"cordisx": "0.1.0-beta.1"
},
"devDependencies": {
"@cordisx/eslint-config": "github:cordisx/cordisxmono#c63c2e8c2ba7e11502934a52ad2ce3734e804cdc",
"@cordisx/protocol": "github:cordisx/cordisx-protocol#c96c290697f9e802a68c6d3bb094fd27d8d00d1e",
"@typescript-eslint/parser": "8.69.0",
"dprint": "0.57.1",
"esbuild": "0.28.2",
"eslint": "9.39.4",
"jsdom": "^26.1.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.19"
}
}