-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
64
65
{
"name": "@printers/printers",
"version": "1.2.0",
"description": "Cross-platform printer library for Node.js, Deno, and Bun",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"napi": {
"binaryName": "printers",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu"
]
},
"engines": {
"node": ">= 20"
},
"repository": {
"type": "git",
"url": "https://github.com/esimkowitz/printers-js.git"
},
"keywords": [
"printer",
"printing",
"print",
"node",
"deno",
"bun",
"napi",
"cross-platform"
],
"license": "MIT",
"devDependencies": {
"@cross/test": "npm:@jsr/cross__test@^0.0.10",
"@napi-rs/cli": "^3.1.5",
"@std/assert": "npm:@jsr/std__assert@^1.0.14",
"@types/bun": "^1.2.21",
"@types/node": "^24.3.1",
"@types/prettier": "^2.7.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"c8": "^10.1.2",
"eslint": "^9.35.0",
"prettier": "^3.6.2",
"semver": "^7.7.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"packageManager": "npm@10.0.0",
"scripts": {
"compile": "node scripts/compile.js",
"build": "node scripts/build-all.js",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepublishOnly": "npm run compile && task prepublish"
}
}