-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "tt-commander-app",
"version": "1.0.0",
"type": "module",
"description": "Tiny Tapeout demo board command web app",
"main": "index.js",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"prepare": "husky"
},
"keywords": [
"Web Serial",
"Tiny Tapeout"
],
"author": "Uri Shaked",
"license": "ISC",
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@suid/icons-material": "^0.8.1",
"@suid/system": "^0.13.0",
"@suid/material": "^0.18.0",
"@thisbeyond/solid-select": "^0.15.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"solid-js": "^1.9.3"
},
"devDependencies": {
"@suid/vite-plugin": "^0.3.1",
"@types/dom-serial": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-plugin-solid": "^0.14.5",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"vite": "^5.0.0",
"vite-plugin-solid": "^2.11.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{js,css}": [
"prettier --write"
]
},
"engines": {
"node": ">=18"
}
}