@crowsgear/escl-protocol-scanner 0.1.0 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +61 -58
package/package.json CHANGED
@@ -1,63 +1,66 @@
1
1
  {
2
- "name": "@crowsgear/escl-protocol-scanner",
3
- "version": "0.1.0",
4
- "description": "eSCL/AirPrint Protocol Scanner Library - HTTP-based network scanner support with mDNS discovery",
5
- "license": "MIT",
6
- "author": "byeong1",
7
- "homepage": "https://github.com/byeong1/escl-protocol-scanner",
8
- "repository": {
9
- "type": "git",
10
- "url": "git@github.com:byeong1/escl-protocol-scanner.git"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/byeong1/escl-protocol-scanner/issues"
14
- },
15
- "main": "dist/index.js",
16
- "types": "dist/index.d.ts",
17
- "exports": {
18
- ".": {
19
- "import": "./dist/index.js",
20
- "require": "./dist/index.js",
21
- "types": "./dist/index.d.ts"
2
+ "name": "@crowsgear/escl-protocol-scanner",
3
+ "version": "1.0.4",
4
+ "description": "eSCL/AirPrint Protocol Scanner Library - HTTP-based network scanner support with mDNS discovery",
5
+ "license": "MIT",
6
+ "author": "CrowsGear",
7
+ "homepage": "https://github.com/byeong1/escl-protocol-scanner",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git@github.com:byeong1/escl-protocol-scanner.git"
22
11
  },
23
- "./types": {
24
- "import": "./dist/types.js",
25
- "types": "./dist/types.d.ts"
12
+ "bugs": {
13
+ "url": "https://github.com/byeong1/escl-protocol-scanner/issues"
26
14
  },
27
- "./client": {
28
- "import": "./dist/client.js",
29
- "types": "./dist/client.d.ts"
15
+ "main": "dist/index.js",
16
+ "types": "dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "import": "./dist/index.js",
20
+ "require": "./dist/index.js",
21
+ "types": "./dist/index.d.ts"
22
+ },
23
+ "./types": {
24
+ "import": "./dist/types.js",
25
+ "types": "./dist/types.d.ts"
26
+ },
27
+ "./client": {
28
+ "import": "./dist/client.js",
29
+ "types": "./dist/client.d.ts"
30
+ }
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "python",
35
+ "scripts",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "scripts": {
40
+ "build": "tsc",
41
+ "build:watch": "tsc --watch",
42
+ "clean": "rm -rf dist",
43
+ "prepublishOnly": "yarn run build",
44
+ "prepack": "yarn run build",
45
+ "postinstall": "node scripts/check-python-deps.js"
46
+ },
47
+ "keywords": [
48
+ "escl",
49
+ "scanner",
50
+ "airprint",
51
+ "network",
52
+ "mfp",
53
+ "printer",
54
+ "connection",
55
+ "auto connection",
56
+ "scanner auto connection"
57
+ ],
58
+ "engines": {
59
+ "node": ">=14.0.0"
60
+ },
61
+ "dependencies": {},
62
+ "devDependencies": {
63
+ "@types/node": "^24.7.2",
64
+ "typescript": "^5.9.3"
30
65
  }
31
- },
32
- "files": [
33
- "dist",
34
- "python",
35
- "scripts",
36
- "README.md",
37
- "LICENSE"
38
- ],
39
- "scripts": {
40
- "build": "tsc",
41
- "build:watch": "tsc --watch",
42
- "clean": "rm -rf dist",
43
- "prepublishOnly": "yarn run build",
44
- "prepack": "yarn run build",
45
- "postinstall": "node scripts/check-python-deps.js"
46
- },
47
- "keywords": [
48
- "escl",
49
- "scanner",
50
- "airprint",
51
- "network",
52
- "mfp",
53
- "printer"
54
- ],
55
- "engines": {
56
- "node": ">=14.0.0"
57
- },
58
- "dependencies": {},
59
- "devDependencies": {
60
- "@types/node": "^24.7.2",
61
- "typescript": "^5.9.3"
62
- }
63
66
  }