-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·104 lines (104 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·104 lines (104 loc) · 3.96 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "tasktime",
"private": true,
"version": "1.4.0",
"license": "AGPL-3.0-only",
"type": "module",
"bin": {
"tasktime-agent-bridge": "./agent-bridge/dist/tasktime-agent-bridge.mjs"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "node ./scripts/build-pages.mjs",
"build:app": "vite build",
"build:agent-bridge": "vite build --config vite.agent-bridge.config.js && node ./scripts/fix-agent-bridge-bin.mjs",
"build:openclaw-plugin": "vite build --config vite.openclaw-plugin.config.js && node ./scripts/sync-openclaw-plugin-manifest.mjs",
"smoke:agent-bridge": "node ./scripts/smoke-agent-bridge.mjs",
"smoke:agent-bundles": "node ./scripts/smoke-agent-bundles.mjs",
"smoke:agent-live": "node ./scripts/smoke-agent-live.mjs",
"build:blog": "npm --prefix blog run build",
"lint": "sh ./scripts/run-eslint.sh",
"typecheck": "tsc --noEmit --pretty false",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test --project=chromium",
"test:e2e:smoke": "playwright test --workers=2 e2e/*.smoke.spec.js --project=chromium",
"test:e2e:drive-browsers": "playwright test --workers=2 e2e/sync.smoke.spec.js --grep \"uploads through the direct Google transport\"",
"test:e2e:pwa:smoke": "npm run build && playwright test -c playwright.pwa.config.js",
"release": "npm run lint && npm run typecheck && npm run test:coverage && npm run test:e2e:smoke && npm run test:e2e:pwa:smoke && npm run build",
"release:agent": "npm run build:agent-bridge && npm run build:openclaw-plugin && npm run smoke:agent-bridge && npm run smoke:agent-bundles && npm run smoke:agent-live"
},
"dependencies": {
"@debugbundle/sdk-browser": "^1.4.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tiptap/extension-link": "^3.23.6",
"@tiptap/extension-placeholder": "^3.23.6",
"@tiptap/extension-task-item": "^3.23.6",
"@tiptap/extension-task-list": "^3.23.6",
"@tiptap/react": "^3.23.6",
"@tiptap/starter-kit": "^3.23.6",
"@vitest/coverage-v8": "^4.0.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.3",
"fflate": "^0.8.3",
"html2pdf.js": "^0.14.0",
"idb": "^8.0.3",
"lucide-react": "^0.562.0",
"next-themes": "^0.4.6",
"prop-types": "^15.8.1",
"react": "^19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"y-indexeddb": "^9.0.12",
"yjs": "^13.6.29",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^25.0.9",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.17"
}
}