mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 23:48:09 -05:00
* feat(linear): add Linear Issue Reader and Writer tools with types * chore(tools): register Linear tools in global tool registry * feat(icons): add LinearIcon for Linear block * feat(blocks): register Linear block in global block registry * feat(linear): implement OAuth integration for Linear block * feat(linear): add dynamic team and project selectors for Linear block * feat(linear): add backend API endpoints for teams and projects * feat(linear): update UI components for Linear selectors and modal * refactor(linear): update create/read issue tools and types * chore(linear): update block config for Linear integration * fix(auth): update auth and oauth logic for Linear * minor fix * improvement[linear]: require teamId and projectId for all tools and types * style[lint]: fix code style and lint errors * chore(linear): install @linear/sdk package * fix[linear]: address greptile-apps feedback for type safety and error handling * fix[linear]: handle teams API response errors * modified icon, added docs --------- Co-authored-by: sriram2k4 <sriramthehacker01@gmail.com>
53 lines
1.3 KiB
JSON
53 lines
1.3 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",
|
|
"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 .",
|
|
"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",
|
|
"tailwindcss": "3.4.1"
|
|
},
|
|
"dependencies": {
|
|
"@linear/sdk": "40.0.0",
|
|
"@t3-oss/env-nextjs": "0.13.4",
|
|
"@vercel/analytics": "1.5.0",
|
|
"remark-gfm": "4.0.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.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
"biome check --files-ignore-unknown=true"
|
|
],
|
|
"!.github/*.md": []
|
|
}
|
|
}
|