-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "little-print",
"version": "2.0.2",
"description": "A wrapper for Nord Projects' Device Keys API for Little Printer",
"author": "Jeff Long <[email protected]>",
"license": "MIT",
"exports": "./dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"sideEffects": false,
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.36.0",
"prettier": "3.3.3",
"typescript": "5.7.2"
},
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint .",
"typecheck": "tsc -b"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/banterability/little-print.git"
},
"bugs": {
"url": "https://github.com/banterability/little-print/issues"
},
"homepage": "https://github.com/banterability/little-print",
"keywords": [
"little printer",
"thermal printer",
"berg",
"nord projects",
"sirius",
"nord-sirius",
"device key"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
]
}