-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@resciencelab/star-office-world",
"version": "0.2.4",
"description": "Pixel-art AI office dashboard built on Agent World Network protocol",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.ts",
"test": "npm run build && node --test test/*.test.mjs",
"lint": "tsc --noEmit",
"version": "changeset version && node scripts/sync-world-version.mjs",
"release": "npm run build && changeset publish"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^10.0.2",
"@fastify/static": "^8.1.0",
"@resciencelab/agent-world-sdk": "^1.6.0",
"fastify": "^5.3.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^22.15.0",
"tsx": "^4.19.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ReScienceLab/star-office-world.git"
}
}