mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-07 22:24:06 -05:00
* feat(tools): added hunter.io tools/block, added default values of first option in dropdowns to avoid operation selector issue * fix * added description for all outputs, fixed param validation for tools * cleanup * add dual validation, once during serialization and once during execution * improvement(docs): add base exec charge info to docs (#826) * improvement(doc-tags-subblock): use table for doc tags subblock in create_document tool for KB (#827) * improvement(doc-tags-subblock): use table for doc tags create doc tool in KB block * enforce max tags * remove red warning text * fix(bugs): fixed rb2b csp, fixed overly-verbose logs, fixed x URLs (#828) Co-authored-by: waleedlatif <waleedlatif@waleedlatifs-MacBook-Pro.local> * fixed serialization errors to appear like execution errors, also fixed contrast on cmdk modal * fixed required for tools, added tag dropdown for kb tags * fix remaining tools with required fields * update utils * update docs * fix kb tags * fix types for exa * lint * updated contributing guide + pr template * Test pre-commit hook with linting * Test pre-commit hook again * remove test files * fixed wealthbox tool * update telemetry endpoints --------- Co-authored-by: waleedlatif <waleedlatif@waleedlatifs-MacBook-Pro.local> Co-authored-by: Vikhyath Mondreti <vikhyathvikku@gmail.com>
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "simstudio",
|
|
"packageManager": "bun@1.2.12",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"dev:sockets": "cd apps/sim && bun run dev:sockets",
|
|
"dev:full": "cd apps/sim && bun run dev:full",
|
|
"test": "turbo run test",
|
|
"format": "bunx biome format --write .",
|
|
"format:check": "bunx biome format .",
|
|
"lint": "bunx biome check --write --unsafe .",
|
|
"lint:check": "bunx biome check --unsafe .",
|
|
"lint:helm": "helm lint ./helm/sim --strict --values ./helm/sim/test/values-lint.yaml",
|
|
"lint:all": "bun run lint && bun run lint:helm",
|
|
"check": "bunx biome check --files-ignore-unknown=true",
|
|
"prepare": "bun husky",
|
|
"prebuild": "bun run lint:check",
|
|
"type-check": "turbo run type-check"
|
|
},
|
|
"overrides": {
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@linear/sdk": "40.0.0",
|
|
"@t3-oss/env-nextjs": "0.13.4",
|
|
"@vercel/analytics": "1.5.0",
|
|
"geist": "^1.4.2",
|
|
"react-colorful": "5.6.1",
|
|
"remark-gfm": "4.0.1",
|
|
"socket.io-client": "4.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0-beta.5",
|
|
"@next/env": "^15.3.2",
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"dotenv-cli": "^8.0.0",
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.0.0",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
"turbo": "2.5.5"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,scss}": [
|
|
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
]
|
|
}
|
|
}
|