-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1005 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1005 Bytes
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
{
"name": "socialai",
"version": "0.1.0",
"description": "The Open Social Index & Identity Claim Network",
"private": true,
"workspaces": [
"apps/*",
"node",
"workers",
"desktop-admin"
],
"scripts": {
"dev": "node node/socialai.node.js",
"dev:public": "cd apps/public && npm run dev",
"dev:admin": "cd apps/admin && npm start",
"dev:desktop": "cd desktop-admin && npm run dev",
"build": "npm run build:public && npm run build:admin",
"build:public": "cd apps/public && npm run build",
"build:admin": "cd apps/admin && npm run build",
"build:desktop": "cd desktop-admin && npm run build",
"build:desktop:windows": "node scripts/build-desktop-admin.js",
"db:init": "psql -U postgres -f db/schema.sql",
"setup": "node scripts/setup.js"
},
"keywords": [
"social",
"farcaster",
"identity",
"ai"
],
"author": "SocialAi Team",
"license": "MIT",
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
}
}