-
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) · 832 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 832 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": "binary-raw",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"docs": "typedoc",
"clean": "rm -rf dist"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "^5.1.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.3",
"typedoc": "^0.28.17",
"typedoc-github-theme": "^0.4.0",
"typescript": "^5.4.5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}