-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"name": "js-pixelcolor-led-ctrl",
"version": "1.0.0",
"author": "Pedro Pereira <pedromdspereira.93@gmail.com>",
"type": "module",
"main": "index.js",
"pnpm": {
"onlyBuiltDependencies": [
"@abandonware/noble",
"canvas",
"esbuild",
"xpc-connection"
]
},
"scripts": {
"build": "tsc",
"example:send-text": "tsx ./examples/send-text.ts",
"example:send-image": "tsx ./examples/send-image.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@abandonware/noble": "1.9.2-26",
"canvas": "^3.2.0",
"chalk": "^5.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/canvasjs": "^1.9.11",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/ui": "^4.0.15",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15"
}
}