-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "inline-studio",
"version": "1.2.0",
"description": "An experimentation layer for visual artists: a node canvas for building generative pipelines, served by the Inline Core engine.",
"author": "Inline Studio",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.19.0",
"npm": ">=10.0.0"
},
"scripts": {
"build:spa": "vite build --config vite.config.spa.ts",
"dev:web": "vite --config vite.config.spa.ts",
"build": "npm run typecheck && npm run build:spa",
"typecheck": "tsc --noEmit -p tsconfig.web.json --composite false",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write \"**/*.{ts,tsx,css,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@xyflow/react": "^12.11.0",
"react-resizable-panels": "^2.1.9"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"konva": "^9.3.18",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-konva": "^19.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"zustand": "^5.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings 0 --no-warn-ignored",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
}
}