-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.78 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.78 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
{
"name": "noder",
"version": "0.1.2",
"description": "A node-based creative workflow canvas for chaining AI calls",
"author": "noder contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oshtz/noder.git"
},
"homepage": "https://github.com/oshtz/noder#readme",
"bugs": {
"url": "https://github.com/oshtz/noder/issues"
},
"keywords": [
"ai",
"workflow",
"node-based",
"creative",
"image-generation",
"replicate",
"tauri",
"react-flow"
],
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:build": "tauri build",
"start": "npm run tauri dev",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css}\"",
"analyze": "ANALYZE=true vite build",
"prepare": "husky"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.8",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@tauri-apps/api": "^2.0.0-alpha.13",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "^2.2.0",
"@tauri-apps/plugin-store": "^2.2.0",
"chokidar": "^3.5.3",
"fast-json-patch": "^3.1.1",
"immer": "^11.1.3",
"lz-string": "^1.5.0",
"ogl": "^0.0.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.3",
"reactflow": "^11.11.4",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0-alpha.20",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/lz-string": "^1.3.34",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.9.3",
"vite": "^5.0.0",
"vitest": "^1.6.0"
}
}