afpp 2.1.7 → 2.2.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.
- package/README.md +6 -1
- package/package.json +14 -10
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# afpp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+
[](https://codecov.io/github/l2ysho/afpp)
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
4
9
|
|
|
5
10
|
> **afpp** — A modern, dependency-light PDF parser for Node.js.
|
|
6
11
|
>
|
package/package.json
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "afpp",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "Async Fast PDF Parser for Node.js — dependency-light, TypeScript-first, production-ready.",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"files": [
|
|
8
|
-
"dist/**"
|
|
8
|
+
"dist/**",
|
|
9
|
+
"README.md",
|
|
10
|
+
"LICENSE"
|
|
9
11
|
],
|
|
10
12
|
"scripts": {
|
|
11
13
|
"build": "tsc -p tsconfig.build.json",
|
|
12
14
|
"commit": "git-cz",
|
|
15
|
+
"format": "prettier --write .",
|
|
13
16
|
"lint": "eslint .",
|
|
17
|
+
"lint:fix": "eslint . --fix",
|
|
14
18
|
"postbuild": "tsc-alias -p tsconfig.build.json",
|
|
15
19
|
"prebuild": "rm -rf dist",
|
|
16
20
|
"prepare": "husky",
|
|
17
21
|
"pretest:coverage": "rm -rf coverage",
|
|
18
22
|
"test": "NODE_ENV=test npx tsx --test --test-reporter @voxpelli/node-test-pretty-reporter test/*.test.ts",
|
|
19
|
-
"test:single": "NODE_ENV=test npx tsx --test --test-reporter @voxpelli/node-test-pretty-reporter",
|
|
20
23
|
"test:coverage": "c8 --reporter=lcov npm test",
|
|
24
|
+
"test:single": "NODE_ENV=test npx tsx --test --test-reporter @voxpelli/node-test-pretty-reporter",
|
|
21
25
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
22
26
|
},
|
|
23
27
|
"repository": {
|
|
@@ -46,8 +50,8 @@
|
|
|
46
50
|
},
|
|
47
51
|
"homepage": "https://github.com/l2ysho/afpp#readme",
|
|
48
52
|
"devDependencies": {
|
|
49
|
-
"@commitlint/cli": "20.
|
|
50
|
-
"@commitlint/config-conventional": "20.
|
|
53
|
+
"@commitlint/cli": "20.3.1",
|
|
54
|
+
"@commitlint/config-conventional": "20.3.1",
|
|
51
55
|
"@semantic-release/changelog": "6.0.3",
|
|
52
56
|
"@semantic-release/git": "10.0.1",
|
|
53
57
|
"@types/node": "25.0.9",
|
|
@@ -58,12 +62,12 @@
|
|
|
58
62
|
"eslint": "9.39.2",
|
|
59
63
|
"eslint-config-prettier": "10.1.8",
|
|
60
64
|
"eslint-plugin-import": "2.32.0",
|
|
61
|
-
"eslint-plugin-perfectionist": "5.
|
|
62
|
-
"eslint-plugin-prettier": "5.5.
|
|
65
|
+
"eslint-plugin-perfectionist": "5.3.1",
|
|
66
|
+
"eslint-plugin-prettier": "5.5.5",
|
|
63
67
|
"eslint-plugin-promise": "7.2.1",
|
|
64
68
|
"husky": "9.1.7",
|
|
65
69
|
"lint-staged": "16.2.7",
|
|
66
|
-
"prettier": "3.
|
|
70
|
+
"prettier": "3.8.0",
|
|
67
71
|
"semantic-release": "25.0.2",
|
|
68
72
|
"tsc-alias": "1.8.16",
|
|
69
73
|
"tsx": "4.21.0",
|
|
@@ -72,6 +76,6 @@
|
|
|
72
76
|
},
|
|
73
77
|
"dependencies": {
|
|
74
78
|
"p-limit": "7.2.0",
|
|
75
|
-
"pdfjs-dist": "5.4.
|
|
79
|
+
"pdfjs-dist": "5.4.530"
|
|
76
80
|
}
|
|
77
81
|
}
|