-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1013 Bytes
/
package.json
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
{
"name": "mizu-ts",
"version": "0.8.0",
"description": "Mizu-ts is a joke script that simulates water(H2o) generation in TypeScript.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome check",
"format": "biome format --write",
"test": "vitest",
"coverage": "vitest --coverage",
"depcruise": "npx depcruise src",
"dependency-graph": "npx depcruise src --include-only \"^src\" --output-type dot | dot -T svg > dependency-graph.svg"
},
"keywords": [],
"author": "",
"license": "ISC",
"volta": {
"node": "18.20.5",
"npm": "9.9.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jsdom": "^21.1.7",
"@vitest/coverage-v8": "^2.1.8",
"canvas": "^3.0.1",
"dependency-cruiser": "^16.9.0",
"jsdom": "^26.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-checker": "^0.8.0",
"vitest": "^2.1.8"
}
}