-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.11 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
85
86
87
88
89
{
"name": "codetwo-desktop",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun scripts/run-electrobun.ts dev --watch",
"dev:renderer": "vite",
"dev:web": "vite --mode web",
"build": "bun scripts/run-electrobun.ts build --env=dev",
"build:nightly": "bun scripts/run-electrobun.ts build --env=stable --channel=nightly",
"build:release": "bun scripts/run-electrobun.ts build --env=stable --channel=release",
"build:app": "bun run build:release",
"build:tool-broker": "bun scripts/build-tool-broker.ts",
"build:remote-agent": "bun scripts/build-remote-agent.ts",
"remote-agent": "cargo run --manifest-path ../../Cargo.toml --bin codetwo-agent --",
"build:renderer": "bun run lint && tsc --noEmit && vite build",
"build:canvas:remote": "vite build --config vite.canvas.config.ts",
"plugin:validate": "bun scripts/validate-plugin.ts",
"lint": "ultracite check",
"lint:code": "ultracite check",
"lint:styles": "stylelint 'src/**/*.css'",
"mutation:taskboard": "stryker run stryker.taskboard.config.json",
"test": "bun test",
"test:ci": "bun test --timeout 15000",
"test:smoke": "bun scripts/run-smoke-tests.ts",
"preview": "vite preview",
"check": "ultracite check",
"fix": "ultracite fix",
"fix:unsafe": "ultracite fix"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@blocknote/core": "^0.25.0",
"@blocknote/mantine": "^0.25.0",
"@blocknote/react": "^0.25.0",
"@dnd-kit/dom": "0.5.0",
"@dnd-kit/react": "0.5.0",
"@excalidraw/excalidraw": "0.18.1",
"@noble/hashes": "^2.2.0",
"@petx/react": "0.2.0",
"@phosphor-icons/react": "^2.1.10",
"@shikijs/monaco": "^4.4.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/xterm": "^5.5.0",
"class-variance-authority": "^0.7.1",
"cmdk": "^1.1.1",
"cn": "^0.2.4",
"monaco-editor": "^0.56.0",
"react": "^18.3.1",
"react-compiler-runtime": "1.0.0",
"react-dom": "^18.3.1",
"react-markdown": "8.0.7",
"remark-gfm": "3.0.1",
"shiki": "^4",
"thinking-orbs": "^0.2.0"
},
"devDependencies": {
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/typescript-checker": "^10.0.0",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.185.4",
"@vitejs/plugin-react": "^4.3.0",
"babel-plugin-react-compiler": "^1.0.0",
"electrobun": "1.18.1",
"eslint-plugin-better-tailwindcss": "4.7.0",
"eslint-plugin-github": "6.1.2",
"eslint-plugin-sonarjs": "^4.2.0",
"happy-dom": "^20.11.2",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"oxlint-plugin-eslint": "^1.81.0",
"oxlint-plugin-react-doctor": "^0.9.13",
"oxlint-tsgolint": "^7.0.2001",
"storybook": "^10.4.6",
"stylelint": "^17.14.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^4.3.3",
"ts-morph": "^28.0.0",
"typescript": "^5.6.0",
"ultracite": "7.10.8",
"vite": "^6.0.0"
}
}