-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 750 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
{
"name": "smart-bulb",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"type": "module",
"author": "Sintho",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"express": "^5.2.1",
"tplink-lightbulb": "^1.8.0"
},
"devDependencies": {
"oxlint": "^1.58.0",
"oxfmt": "^0.43.0",
"vite": "^8.0.3",
"typescript": "^6.0.2",
"@types/node": "^25.5.2",
"@types/express": "^5.0.6"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"preview": "vite preview",
"start": "node server.ts",
"mock": "node bulb.mock.ts",
"typecheck": "tsc",
"lint": "oxlint src index.html server.ts bulb.mock.ts",
"format": "oxfmt src index.html server.ts bulb.mock.ts"
}
}