-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.05 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
{
"name": "bkn-studio",
"private": true,
"version": "0.1.2",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"packageManager": "pnpm@11.5.1",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:types": "eslint . --config eslint.config.typechecked.js",
"test": "vitest",
"test:execution-factory": "vitest run src/modules/execution-factory",
"test:execution-factory:e2e": "npm run test:full --prefix tests/e2e",
"test:execution-factory:e2e:operator": "npm run test:operator --prefix tests/e2e",
"test:execution-factory:agent-at": "echo Run Agent AT from tests/execution-factory/agent-at — see LOCAL_SETUP.md",
"check": "npm run license:check && npm run lint:types && npm run test -- --run && npm run build",
"license:check": "node scripts/check-license-headers.mjs",
"license:fix": "node scripts/check-license-headers.mjs --fix"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^3.0.1",
"@ant-design/icons": "^6.1.0",
"@monaco-editor/react": "^4.7.0",
"ai": "^7.0.4",
"antd": "^5.28.0",
"axios": "^1.18.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.21",
"echarts": "^6.1.0",
"i18next": "^25.6.0",
"monaco-editor": "^0.52.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^16.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.1",
"remark-gfm": "^4.0.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.6.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.38.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"jsdom": "^27.0.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.10",
"vitest": "^3.2.4"
}
}