-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.36 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
{
"name": "Pantograph",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"dev:desktop": "tauri dev",
"build:desktop": "tauri build",
"lint": "eslint scripts eslint.config.mjs vite.config.ts --max-warnings 0",
"lint:full": "eslint src packages scripts eslint.config.mjs vite.config.ts --max-warnings 0",
"lint:critical": "node scripts/check-critical-antipatterns.mjs",
"test:frontend": "node --experimental-strip-types --test src/components/workflowGraphSync.test.ts src/components/diagnostics/presenters.test.ts src/components/nodes/workflow/audioOutputState.test.ts src/components/nodes/workflow/expandSettingsDisplay.test.ts src/components/nodes/workflow/primitiveInputMetadata.test.ts packages/svelte-graph/src/stores/runtimeData.test.ts packages/svelte-graph/src/stores/definitionOverlay.test.ts packages/svelte-graph/src/stores/createSessionStores.test.ts packages/svelte-graph/src/workflowEventOwnership.test.ts packages/svelte-graph/src/portTypeCompatibility.test.ts packages/svelte-graph/src/workflowSelection.test.ts",
"typecheck": "tsc --project tsconfig.json --noEmit --pretty false",
"test": "cargo test -p node-engine --lib && cargo test -p workflow-nodes --lib",
"test:runtime-separation": "./scripts/check-no-python-linkage.sh",
"check": "npm run lint && npm run lint:critical && npm run typecheck && npm run test",
"hooks:install": "npx lefthook install"
},
"dependencies": {
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tiptap/core": "^3.15.3",
"@tiptap/extension-placeholder": "^3.15.3",
"@tiptap/pm": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"@xyflow/svelte": "^1.5.0",
"lucide-svelte": "^0.562.0",
"svelte": "^5.0.0",
"three": "^0.183.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tauri-apps/cli": "^2.9.0",
"@types/node": "^22.14.0",
"@types/three": "^0.183.1",
"autoprefixer": "^10.4.19",
"es-module-lexer": "^2.0.0",
"eslint": "^9.0.0",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "~5.8.2",
"typescript-eslint": "^8.0.0",
"vite": "^6.2.0"
}
}