-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.27 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
{
"name": "dynamic-workflows",
"version": "1.0.0",
"description": "Script-first dynamic workflow orchestrator for local Nextop agents.",
"private": true,
"type": "module",
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "next dev",
"build": "next build && node ./tools/scripts/normalize-next-env.mjs",
"start": "next start",
"typecheck": "tsc --noEmit",
"check:blueprints": "npm run typecheck && vitest run src/lib/workflow/blueprint-catalog.test.ts src/lib/workflow/blueprint-search-request.test.ts",
"check:quick": "npm run typecheck && vitest run",
"check:full": "npm run check:quick && npm run build",
"check:changed": "node ./tools/scripts/run-check-changed.mjs",
"check:native": "node ./tools/scripts/ensure-native-modules.mjs",
"repair:native": "node ./tools/scripts/ensure-native-modules.mjs --fix",
"blueprint:new": "node ./tools/scripts/new-workflow-blueprint.mjs",
"package:tutti:staging": "node ./scripts/package-tutti-app.mjs --environment staging",
"package:tutti-dev": "node ./scripts/package-tutti-dev-app.mjs",
"import:tutti-dev": "node ./scripts/import-tutti-dev-app.mjs",
"test": "npm run check:quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tutti-os/dynamic-workflows.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tutti-os/dynamic-workflows/issues"
},
"homepage": "https://github.com/tutti-os/dynamic-workflows#readme",
"dependencies": {
"@babel/parser": "^7.29.7",
"@babel/traverse": "^7.29.7",
"@monaco-editor/react": "^4.7.0",
"@tutti-os/ui-system": "^0.0.12",
"@tutti-os/workspace-user-project": "^0.0.16",
"@xyflow/react": "^12.11.0",
"better-sqlite3": "^12.11.1",
"clsx": "^2.1.1",
"lucide-react": "^1.18.0",
"nanoid": "^5.1.11",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"valtio": "^2.3.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^10.5.0",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}