@longform/async 0.2.0 → 0.2.1
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/dist/api-metadata.json +1202 -0
- package/dist/async.d.ts +626 -0
- package/dist/longform.cjs +8 -8
- package/dist/longform.d.ts +3 -3
- package/dist/longform.js +8 -8
- package/dist/longform.js.br +0 -0
- package/dist/longform.js.gz +0 -0
- package/dist/longform.min.js +1 -1
- package/dist/longform.min.js.br +0 -0
- package/dist/longform.min.js.gz +0 -0
- package/dist/longform.min.js.map +1 -1
- package/dist/mod.d.ts +563 -2
- package/dist/types.d.ts +6 -6
- package/lib/longform.ts +7 -7
- package/lib/types.ts +6 -6
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"author": "Matthew Quinn",
|
|
5
5
|
"homepage": "https://github.com/occultist-dev/longform",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"version": "0.2.
|
|
7
|
+
"version": "0.2.1",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"HTML",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"types": "./dist/mod.d.ts",
|
|
17
17
|
"exports": {
|
|
18
18
|
".": {
|
|
19
|
+
"types": "./dist/mod.d.ts",
|
|
19
20
|
"import": "./dist/longform.js",
|
|
20
21
|
"require": "./dist/longform.cjs"
|
|
21
22
|
}
|
|
@@ -33,18 +34,24 @@
|
|
|
33
34
|
"licenses": [
|
|
34
35
|
{
|
|
35
36
|
"type": "MIT",
|
|
36
|
-
"url": "https://
|
|
37
|
+
"url": "https://codeberg.org/occultist/longform/blob/main/LICENSE"
|
|
37
38
|
}
|
|
38
39
|
],
|
|
39
40
|
"devDependencies": {
|
|
41
|
+
"@microsoft/api-extractor": "^7.58.10",
|
|
40
42
|
"@rollup/plugin-terser": "^1.0.0",
|
|
41
43
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
42
44
|
"@types/commonmark": "^0.27.10",
|
|
43
45
|
"@types/deno": "^2.5.0",
|
|
44
46
|
"@types/jsdom": "^27.0.0",
|
|
45
47
|
"@types/node": "^24.8.1",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^8.64.0",
|
|
49
|
+
"@typescript-eslint/parser": "^8.64.0",
|
|
46
50
|
"commonmark": "^0.31.2",
|
|
47
51
|
"dompurify": "^3.4.1",
|
|
52
|
+
"eslint": "^10.7.0",
|
|
53
|
+
"eslint-plugin-tsdoc": "^0.5.2",
|
|
54
|
+
"eslint-watch": "^8.0.0",
|
|
48
55
|
"jsdom": "^27.0.1",
|
|
49
56
|
"marked": "^16.4.1",
|
|
50
57
|
"prettier": "^3.6.2",
|
|
@@ -64,7 +71,9 @@
|
|
|
64
71
|
"build": "node build.ts",
|
|
65
72
|
"bench": "deno bench --no-check --allow-read ./bench/longform.bench.ts",
|
|
66
73
|
"test": "node --test test/**/*.test.ts",
|
|
67
|
-
"serve": "node
|
|
68
|
-
"spec": "node
|
|
74
|
+
"serve": "node serve.ts",
|
|
75
|
+
"spec": "node spec.ts",
|
|
76
|
+
"tsdoc": "node --watch --watch-path=lib lint.ts",
|
|
77
|
+
"release": "./release.sh"
|
|
69
78
|
}
|
|
70
79
|
}
|