-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "blenderq",
"version": "0.1.1",
"description": "A TUI for managing a queue of local Blender rendering jobs.",
"main": "dist/app.js",
"type": "module",
"author": {
"name": "TechSquidTV",
"email": "npm@techsquidtv.com"
},
"bin": {
"blenderq": "dist/app.js"
},
"scripts": {
"dev": "vite-node --watch src/app.tsx",
"typecheck": "tsc --noEmit",
"build": "vite build && cp -R ./src/blender/python ./dist/python/",
"start": "node dist/app.js",
"fmt": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [],
"license": "ISC",
"packageManager": "pnpm@10.9.0",
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@types/node": "^22.15.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"commander": "^13.1.0",
"ink": "^5.2.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"react": "^18.2.0",
"typescript": "^5.8.3"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.26.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "3.5.3",
"vite": "^6.3.5",
"vite-node": "^3.1.3",
"vite-tsconfig-paths": "^5.1.4"
}
}