-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "ferrum",
"version": "1.0.0-alpha.1",
"private": true,
"type": "module",
"description": "A spreadsheet that fills itself in, running on your own computer. Each column can ask an AI, run a rule, call a website or research an answer. No credits to buy.",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "tsx watch --env-file-if-exists=.env src/index.ts",
"start": "tsx --env-file-if-exists=.env src/index.ts",
"typecheck": "tsc --noEmit && tsc --noEmit -p web/tsconfig.json",
"test": "node scripts/test.mjs",
"web:dev": "vite --config web/vite.config.ts",
"web:build": "vite build --config web/vite.config.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"express": "^5.1.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^8.1.5"
}
}