mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
146 lines
4.8 KiB
JSON
146 lines
4.8 KiB
JSON
{
|
|
"name": "@invoke-ai/invoke-ai-ui",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"publishConfig": {
|
|
"access": "restricted",
|
|
"registry": "https://npm.pkg.github.com"
|
|
},
|
|
"main": "./dist/invoke-ai-ui.umd.js",
|
|
"module": "./dist/invoke-ai-ui.es.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/invoke-ai-ui.es.js",
|
|
"require": "./dist/invoke-ai-ui.umd.js"
|
|
}
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"prepare": "cd ../../../ && husky install invokeai/frontend/web/.husky",
|
|
"dev": "concurrently \"vite dev\" \"yarn run theme:watch\"",
|
|
"dev:nodes": "concurrently \"vite dev --mode nodes\" \"yarn run theme:watch\"",
|
|
"dev:host": "concurrently \"vite dev --host\" \"yarn run theme:watch\"",
|
|
"build": "yarn run lint && vite build",
|
|
"api:web": "openapi -i http://localhost:9090/openapi.json -o src/services/api --client axios --useOptions --useUnionTypes --exportSchemas true --indent 2 --request src/services/fixtures/request.ts",
|
|
"api:file": "openapi -i src/services/fixtures/openapi.json -o src/services/api --client axios --useOptions --useUnionTypes --exportSchemas true --indent 2 --request src/services/fixtures/request.ts",
|
|
"preview": "vite preview",
|
|
"lint:madge": "madge --circular src/main.tsx",
|
|
"lint:eslint": "eslint --max-warnings=0 .",
|
|
"lint:prettier": "prettier --check .",
|
|
"lint:tsc": "tsc --noEmit",
|
|
"lint": "yarn run lint:eslint && yarn run lint:prettier && yarn run lint:tsc && yarn run lint:madge",
|
|
"fix": "eslint --fix . && prettier --loglevel warn --write . && tsc --noEmit",
|
|
"lint-staged": "lint-staged",
|
|
"postinstall": "patch-package && yarn run theme",
|
|
"theme": "chakra-cli tokens src/theme/theme.ts",
|
|
"theme:watch": "chakra-cli tokens src/theme/theme.ts --watch"
|
|
},
|
|
"madge": {
|
|
"detectiveOptions": {
|
|
"ts": {
|
|
"skipTypeImports": true
|
|
},
|
|
"tsx": {
|
|
"skipTypeImports": true
|
|
}
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx,cjs,json,html,scss}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/anatomy": "^2.1.1",
|
|
"@chakra-ui/icons": "^2.0.19",
|
|
"@chakra-ui/react": "^2.6.0",
|
|
"@chakra-ui/styled-system": "^2.9.0",
|
|
"@chakra-ui/theme-tools": "^2.0.16",
|
|
"@dagrejs/graphlib": "^2.1.12",
|
|
"@emotion/react": "^11.10.6",
|
|
"@emotion/styled": "^11.10.6",
|
|
"@fontsource/inter": "^4.5.15",
|
|
"@reduxjs/toolkit": "^1.9.5",
|
|
"@roarr/browser-log-writer": "^1.1.5",
|
|
"chakra-ui-contextmenu": "^1.0.5",
|
|
"dateformat": "^5.0.3",
|
|
"formik": "^2.2.9",
|
|
"framer-motion": "^10.12.4",
|
|
"fuse.js": "^6.6.2",
|
|
"i18next": "^22.4.15",
|
|
"i18next-browser-languagedetector": "^7.0.1",
|
|
"i18next-http-backend": "^2.2.0",
|
|
"konva": "^9.0.1",
|
|
"lodash-es": "^4.17.21",
|
|
"patch-package": "^7.0.0",
|
|
"re-resizable": "^6.9.9",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropzone": "^14.2.3",
|
|
"react-hotkeys-hook": "4.4.0",
|
|
"react-i18next": "^12.2.2",
|
|
"react-icons": "^4.7.1",
|
|
"react-konva": "^18.2.7",
|
|
"react-konva-utils": "^1.0.4",
|
|
"react-redux": "^8.0.5",
|
|
"react-transition-group": "^4.4.5",
|
|
"react-zoom-pan-pinch": "^3.0.7",
|
|
"reactflow": "^11.7.0",
|
|
"redux-deep-persist": "^1.0.7",
|
|
"redux-dynamic-middlewares": "^2.2.0",
|
|
"redux-persist": "^6.0.0",
|
|
"roarr": "^7.15.0",
|
|
"socket.io-client": "^4.6.0",
|
|
"use-image": "^1.1.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@chakra-ui/cli": "^2.4.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"ts-toolbelt": "^9.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@chakra-ui/cli": "^2.4.0",
|
|
"@types/dateformat": "^5.0.0",
|
|
"@types/lodash-es": "^4.14.194",
|
|
"@types/node": "^18.16.2",
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.1",
|
|
"@types/react-transition-group": "^4.4.5",
|
|
"@types/uuid": "^9.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
"@typescript-eslint/parser": "^5.59.1",
|
|
"@vitejs/plugin-react-swc": "^3.3.0",
|
|
"axios": "^1.4.0",
|
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
"concurrently": "^8.0.1",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"form-data": "^4.0.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.2.2",
|
|
"madge": "^6.0.0",
|
|
"openapi-types": "^12.1.0",
|
|
"openapi-typescript-codegen": "^0.24.0",
|
|
"postinstall-postinstall": "^2.1.0",
|
|
"prettier": "^2.8.8",
|
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
"terser": "^5.17.1",
|
|
"ts-toolbelt": "^9.6.0",
|
|
"vite": "^4.3.3",
|
|
"vite-plugin-dts": "^2.3.0",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vite-tsconfig-paths": "^4.2.0",
|
|
"yarn": "^1.22.19"
|
|
}
|
|
}
|