-
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) · 802 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 802 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": "frog-math",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://aadjones.github.io/frog-math",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint src --ext .ts",
"format": "prettier --write ."
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.2",
"gh-pages": "^6.3.0",
"prettier": "^3.5.3",
"sass": "^1.87.0",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"dependencies": {
"@types/p5": "^1.7.6",
"katex": "^0.16.22",
"p5": "^2.0.1"
}
}