intellifont-engine 1.2.0 → 2.0.0

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.
Binary file
package/package.json CHANGED
@@ -1,59 +1,64 @@
1
- {
2
- "name": "intellifont-engine",
3
- "version": "1.2.0",
4
- "description": "High-performance AI-powered visual font identification engine. Now includes AI Similarity Suggestion and Microservice Mode.",
5
- "main": "index.js",
6
- "bin": {
7
- "intellifont": "./index.js"
8
- },
9
- "types": "index.d.ts",
10
- "napi": {
11
- "name": "intellifont-engine",
12
- "package": {
13
- "name": "intellifont-engine"
14
- }
15
- },
16
- "scripts": {
17
- "artifacts": "napi artifacts",
18
- "build": "napi build --release",
19
- "build:debug": "napi build",
20
- "test": "node test.js",
21
- "version": "napi version"
22
- },
23
- "keywords": [
24
- "font",
25
- "typography",
26
- "pdf",
27
- "resolver",
28
- "suggestion",
29
- "matching",
30
- "google-fonts",
31
- "rust",
32
- "napi"
33
- ],
34
- "author": "IntelliFont Team",
35
- "license": "Apache-2.0",
36
- "repository": {
37
- "type": "git",
38
- "url": "https://github.com/magic-emperor/Intellifont.git"
39
- },
40
- "engines": {
41
- "node": ">= 14"
42
- },
43
- "files": [
44
- "index.js",
45
- "index.d.ts",
46
- "intellifont-engine.node",
47
- "setup.js",
48
- "README.md",
49
- "LICENSE"
50
- ],
51
- "devDependencies": {
52
- "@napi-rs/cli": "^2.16.0"
53
- },
54
- "optionalDependencies": {
55
- "intellifont-engine-win32-x64-msvc": "0.1.0",
56
- "intellifont-engine-darwin-x64": "0.1.0",
57
- "intellifont-engine-linux-x64-gnu": "0.1.0"
58
- }
1
+ {
2
+ "name": "intellifont-engine",
3
+ "version": "2.0.0",
4
+ "description": "Visual font identification engine. Identifies fonts from images, documents, URLs, and web pages. Includes hybrid ML matching, browser extensions, and WASM build.",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "napi": {
8
+ "name": "intellifont-engine",
9
+ "package": {
10
+ "name": "intellifont-engine"
11
+ }
12
+ },
13
+ "scripts": {
14
+ "artifacts": "napi artifacts",
15
+ "build": "napi build --release",
16
+ "build:debug": "napi build",
17
+ "test": "node test.js",
18
+ "version": "napi version",
19
+ "build:db": "node ../../../../scripts/build-font-database.js",
20
+ "build:db:test": "node ../../../../scripts/build-font-database.js --limit 20",
21
+ "build:db:dryrun": "node ../../../../scripts/build-font-database.js --dry-run",
22
+ "build:browser-db": "node ../../../../scripts/build-browser-db.js",
23
+ "build:icons": "node ../../../../scripts/generate-icons.js",
24
+ "build:extension": "node ../../../../scripts/build-extension.js"
25
+ },
26
+ "keywords": [
27
+ "font",
28
+ "font-recognition",
29
+ "font-identification",
30
+ "typography",
31
+ "image-analysis",
32
+ "visual-matching",
33
+ "pdf",
34
+ "document-analysis",
35
+ "browser-extension",
36
+ "wasm",
37
+ "rust",
38
+ "napi"
39
+ ],
40
+ "author": "IntelliFont Team",
41
+ "license": "Apache-2.0",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/magic-emperor/Intellifont.git"
45
+ },
46
+ "engines": {
47
+ "node": ">= 14"
48
+ },
49
+ "files": [
50
+ "index.js",
51
+ "index.d.ts",
52
+ "intellifont-engine.node",
53
+ "setup.js",
54
+ "README.md",
55
+ "LICENSE",
56
+ "browser/canvas-dna.js",
57
+ "browser/intellifont-inspector.js",
58
+ "browser/image-pipeline.js",
59
+ "browser/demo.html"
60
+ ],
61
+ "devDependencies": {
62
+ "@napi-rs/cli": "^2.16.0"
63
+ }
59
64
  }