mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
* feat(domain): drop the * change all references for Sim Studio to Sim * change back license and notice * lint --------- Co-authored-by: waleedlatif <waleedlatif@waleedlatifs-MacBook-Pro.local>
58 lines
990 B
JSON
58 lines
990 B
JSON
{
|
|
"name": "simstudio",
|
|
"version": "0.1.19",
|
|
"description": "Sim CLI - Run Sim with a single command",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"simstudio": "dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "bun run build:tsc",
|
|
"build:tsc": "tsc",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"simstudio",
|
|
"ai",
|
|
"workflow",
|
|
"ui",
|
|
"cli",
|
|
"sim",
|
|
"sim-studio",
|
|
"agent",
|
|
"agents",
|
|
"automation",
|
|
"docker"
|
|
],
|
|
"author": "Sim",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"commander": "^11.1.0",
|
|
"dotenv": "^16.3.1",
|
|
"inquirer": "^8.2.6",
|
|
"listr2": "^6.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/inquirer": "^8.2.6",
|
|
"@types/node": "^20.5.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"turbo": {
|
|
"tasks": {
|
|
"build": {
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|