Files
sim/package.json
Waleed Latif f2894e645e feat(package): added npm package to run sim studio (#376)
* added npm pkg for sim studio

* added cache scope for new pkg

* added optional port config, default to 3000

* remove accidental package lock

* updated package version

* added keywords

* acknowledged PR comments
2025-05-18 21:16:13 -07:00

38 lines
852 B
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": "prettier --write .",
"format:check": "prettier --check .",
"lint": "turbo run lint",
"prepare": "bun husky"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwindcss": "3.4.1"
},
"dependencies": {
"@t3-oss/env-nextjs": "0.13.4",
"@vercel/analytics": "1.5.0"
},
"devDependencies": {
"@next/env": "^15.3.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"dotenv-cli": "^8.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "2.5.3"
}
}