forked from iflabx/agentifui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 6.11 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 6.11 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "agentifui",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.14.0",
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"dev:clean": "next dev",
"dev:turbo": "next dev --turbopack",
"build": "next build",
"build:standalone": "NEXT_OUTPUT_MODE=standalone next build",
"analyze": "ANALYZE=true pnpm build",
"start": "next start",
"start:standalone": "pnpm build:standalone && [ -d .next/static ] && cp -r .next/static .next/standalone/.next/static || echo 'No static files to copy' && [ -d public ] && cp -r public .next/standalone/public || echo 'No public directory found' && cross-env PORT=$npm_config_port HOSTNAME=$npm_config_host node .next/standalone/server.js",
"lint": "pnpx oxlint && eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache .",
"lint:files": "eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache",
"lint:fast": "pnpx oxlint",
"lint:eslint": "eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache .",
"lint:errors": "pnpx oxlint && eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache . --quiet",
"lint:complexity": "eslint --rule 'complexity: [error, {max: 15}]' --quiet .",
"fix": "next lint --fix",
"fix:eslint": "eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache . --fix",
"fix:eslint:quiet": "eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache . --fix --quiet",
"lint:claude": "claude -p 'you are a linter. please look at the changes vs. main and report any issues related to typos. report the filename and line number on one line, and a description of the issue on the second line. do not return any other text.'",
"format": "prettier --write .",
"format:files": "prettier --write",
"format:check": "prettier --check .",
"format:staged": "lint-staged",
"prepare": "node -e \"if (process.env.NODE_ENV === 'production' || process.env.CI){process.exit(0)} else {process.exit(1)}\" || husky",
"preinstall": "npx only-allow pnpm",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"i18n:check": "python3 scripts/i18n-refactor-helper.py quick-check",
"i18n:validate": "python3 scripts/validate-i18n-consistency.py",
"i18n:detect": "python3 scripts/i18n-refactor-helper.py detect-missing",
"i18n:compare": "python3 scripts/i18n-refactor-helper.py compare",
"i18n:compare:details": "python3 scripts/i18n-refactor-helper.py compare --details",
"i18n:remove-extra": "python3 scripts/i18n-refactor-helper.py remove-extra",
"i18n:remove-extra:dry": "python3 scripts/i18n-refactor-helper.py remove-extra --dry",
"i18n:translate": "node scripts/auto-gen-i18n.js",
"i18n:translate:dry": "node scripts/auto-gen-i18n.js --dry-run",
"i18n:translate:help": "node scripts/auto-gen-i18n.js --help",
"deploy": "pnpm build:standalone && pm2 startOrRestart ecosystem.config.js --only AgentifUI-Standalone --update-env || { echo 'Deploy failed'; exit 1; }",
"deploy:legacy": "pnpm build && pm2 startOrRestart ecosystem.config.js --only AgentifUI --update-env || { echo 'Deploy failed'; exit 1; }"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@tailwindcss/oxide",
"bufferutil",
"sharp",
"unrs-resolver",
"utf-8-validate"
],
"overrides": {
"@eslint/plugin-kit": "^0.3.3"
}
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.53.0",
"@types/prismjs": "^1.26.5",
"@types/uuid": "^10.0.0",
"bufferutil": "^4.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"fast-xml-parser": "^4.5.3",
"framer-motion": "^11.18.2",
"katex": "^0.16.22",
"lodash": "^4.17.21",
"lucide-react": "^0.513.0",
"next": "15.4.7",
"next-intl": "^4.3.4",
"next-themes": "^0.4.6",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-easy-crop": "^5.5.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.6",
"tailwind-merge": "^2.6.0",
"utf-8-validate": "^6.0.5",
"uuid": "^11.1.0",
"zustand": "^5.0.7"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@jest/globals": "^30.0.5",
"@next/bundle-analyzer": "^15.4.5",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^22.17.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"cross-env": "^10.0.0",
"eslint": "^9.32.0",
"eslint-config-next": "15.4.7",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"lint-staged": "^16.1.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,scss,yaml,yml}": [
"prettier --write"
],
"**/*.js?(x)": [
"eslint --fix"
],
"**/*.ts?(x)": [
"eslint --fix"
]
}
}