mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 07:27:57 -05:00
69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "simstudio",
|
|
"version": "0.1.0",
|
|
"description": "CLI tool for Sim Studio - easily start, build and test agent workflows",
|
|
"license": "MIT",
|
|
"author": "Sim Studio Team",
|
|
"main": "dist/index.js",
|
|
"type": "commonjs",
|
|
"bin": {
|
|
"simstudio": "./bin/sim.js"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"README.md",
|
|
"standalone"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node bin/sim.js",
|
|
"dev": "ts-node src/index.ts",
|
|
"clean": "rimraf dist",
|
|
"prepublishOnly": "npm run clean && npm run build && npm run prepare-standalone && echo 'Checking for sensitive files...' && (! find . -name '.env*' -not -path '*/node_modules/*' -not -path '*/standalone/*' | grep -q .)",
|
|
"prepare-standalone": "node ../../../scripts/build-standalone.js"
|
|
},
|
|
"keywords": [
|
|
"sim",
|
|
"sim-studio",
|
|
"workflow",
|
|
"automation",
|
|
"cli",
|
|
"agent",
|
|
"ai",
|
|
"workflow-automation"
|
|
],
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"commander": "^11.1.0",
|
|
"conf": "^10.2.0",
|
|
"dotenv": "^16.4.7",
|
|
"inquirer": "^8.2.6",
|
|
"tar": "^6.2.1",
|
|
"update-notifier": "^5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/inquirer": "^8.2.10",
|
|
"@types/node": "^20.11.30",
|
|
"@types/tar": "^6.1.11",
|
|
"@types/update-notifier": "^5.1.0",
|
|
"rimraf": "^5.0.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/simstudioai/sim"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/simstudioai/sim/issues"
|
|
},
|
|
"homepage": "https://github.com/simstudioai/sim#readme",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|