-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.71 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "aiagent-app",
"type": "module",
"version": "0.1.0",
"private": true,
"main": "electron.cjs",
"productName": "AI Social Lab",
"homepage": "./",
"author": "AI Agent Team",
"description": "Desktop and web sandbox for AI social simulation, local/cloud inference, and experiment orchestration.",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@huggingface/transformers": "^3.8.1",
"dompurify": "^3.3.1",
"electron-is-dev": "^3.0.1",
"lucide-react": "^0.561.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^6.30.3",
"web-vitals": "^2.1.4"
},
"scripts": {
"sync:locales": "node scripts/sync-locales.cjs",
"sync:vector-worker": "node scripts/sync-vector-worker.cjs",
"sync:generated": "npm run sync:locales && npm run sync:vector-worker",
"start": "npm run sync:generated && vite --host 127.0.0.1 --port 3000 --strictPort",
"electron": "wait-on tcp:3000 && electron .",
"electron:dev": "concurrently \"npm run start\" \"wait-on tcp:3000 && electron .\"",
"clean": "powershell -Command \"Get-Process -ErrorAction SilentlyContinue | Where-Object { $_.ProcessName -in @('AI Social Lab', 'AI Agent Ultra') } | Stop-Process -Force -ErrorAction SilentlyContinue; Start-Sleep -Seconds 1; if (Test-Path dist) { Remove-Item -Recurse -Force dist -ErrorAction SilentlyContinue }; exit 0\"",
"electron:build": "npm run clean && npm run build && electron-packager . \"AI Social Lab\" --platform=win32 --arch=x64 --out=dist --overwrite --icon=public/favicon.ico",
"electron:pack": "npm run electron:build",
"dev": "npm run start",
"build": "npm run sync:generated && vite build",
"world:validate": "node scripts/world-validate.cjs",
"society:batch": "node scripts/society-batch-runner.cjs",
"society:distributed": "node scripts/society-batch-runner.cjs --mode benchmark-distributed --profile-id core_city",
"society:api": "node scripts/society-api-server.cjs",
"lang:repair": "node scripts/repair-mojibake-data.cjs",
"lang:scan": "node scripts/scan-mojibake.cjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{js,jsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json,css}\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-packager": "16.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"prettier": "^3.8.2",
"sucrase": "^3.35.1",
"tailwindcss": "^3.4.17",
"vite": "^7.1.12",
"vitest": "^3.2.4",
"wait-on": "^9.0.3"
},
"overrides": {
"@isaacs/brace-expansion": "^5.0.1",
"axios": "^1.13.5",
"jsonpath": "^1.2.2",
"lodash": "^4.17.23",
"minimatch": "^10.2.1",
"ajv": "^6.12.6",
"ajv-keywords": "^5.1.0",
"nth-check": "^2.1.1",
"resolve-url-loader": "^5.0.0",
"qs": "^6.15.0",
"tar": "^7.5.9",
"webpack": "^5.104.0"
}
}