-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 957 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 957 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
{
"name": "serial-projector",
"version": "2.0.2",
"license": "MIT",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite dev",
"dev:open": "vite dev --open",
"preview": "vite preview",
"preview:open": "vite preview --open",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint ./src",
"test": "vitest --coverage"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/w3c-web-serial": "^1.0.8",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.4.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jsdom": "^27.1.0",
"prettier": "^3.0.0",
"vite": "^7.1.12",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^3.0.0"
}
}