-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 807 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
{
"name": "math-methods",
"type": "module",
"version": "0.1.0",
"description": "Herramienta interactiva de análisis numérico: búsqueda de raíces con Newton-Raphson, Bisección y Secante.",
"license": "MIT",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@lucide/astro": "^1.17.0",
"@tailwindcss/vite": "^4.2.1",
"astro": "^6.0.3",
"mathjs": "^15.1.1",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/sitemap": "^3.7.3",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
}
}