-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.23 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
{
"name": "jot",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx server/index.ts",
"build": "npm run typecheck && vite build",
"start": "NODE_ENV=production tsx server/index.ts",
"test": "npm run check:boundaries && tsx --test server/*.test.ts packages/agent/src/*.test.ts packages/browser/src/*.test.ts packages/jev-core/src/*.test.ts packages/ui/src/*.test.tsx",
"typecheck": "tsc --noEmit && npm run typecheck --workspaces",
"check:boundaries": "node scripts/check-boundaries.mjs",
"test:flights": "tsx scripts/browser-regression.ts",
"test:flights:warm": "JOT_BROWSER_WARM=1 tsx scripts/browser-regression.ts",
"draft:serve": "sh scripts/draft-serve.sh",
"chrome:linux": "sh scripts/linux-chrome.sh"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.1.0",
"@jot/agent": "0.1.0",
"@jot/jev-core": "0.1.0",
"@jot/browser": "0.1.0"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/node": "^24.10.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.2"
},
"workspaces": [
"packages/*"
]
}