Skip to content

Commit f9580b9

Browse files
authored
Add initial package.json with project details
Initial package.json setup with dependencies and scripts.
1 parent 8b34bb4 commit f9580b9

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "spr-swarm-core",
3+
"version": "0.1.0",
4+
"description": "Decentralized swarm production runtime with pheromone-based task routing",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"build": "webpack",
8+
"start": "node dist/index.js",
9+
"dev": "ts-node api/server.ts"
10+
},
11+
"dependencies": {
12+
"express": "^4.19.2",
13+
"ioredis": "^5.4.1"
14+
},
15+
"devDependencies": {
16+
"webpack": "^5.90.0",
17+
"webpack-cli": "^5.1.4",
18+
"ts-node": "^10.9.2",
19+
"typescript": "^5.4.0"
20+
}
21+
}

0 commit comments

Comments
 (0)