-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1018 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1018 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
{
"name": "layercal",
"version": "2.0.0",
"description": "Browser-based deep learning parameter calculator with AI Architecture Advisor — FLOPs, memory estimation, and code generation for PyTorch, TensorFlow, and JAX",
"author": "Chanjoong Kim (https://github.com/chanjoongx)",
"license": "MIT",
"homepage": "https://layercal.com",
"repository": {
"type": "git",
"url": "https://github.com/chanjoongx/layercal.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"html2canvas": "^1.4.1",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"vite": "^5.0.8",
"vitest": "^3.0.0"
}
}