-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@opendisplay/opendisplay",
"version": "1.2.0",
"description": "TypeScript library for OpenDisplay BLE e-paper displays (Web Bluetooth)",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"opendisplay",
"e-paper",
"eink",
"ble",
"bluetooth",
"web-bluetooth"
],
"dependencies": {
"@opendisplay/epaper-dithering": "^2.1.3",
"pako": "^2.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pako": "^2.0.0",
"@types/web-bluetooth": "^0.0.20",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"happy-dom": "20.0.2",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenDisplay-org/opendisplay-js.git"
},
"homepage": "https://github.com/OpenDisplay-org/opendisplay-js#readme"
}