@corvidlabs/three-md-element 1.7.17 → 1.8.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/package.json +27 -7
package/package.json
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corvidlabs/three-md-element",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "The canonical <three-md> web component: a framework-agnostic interactive renderer for the 3md format, backed by @corvidlabs/threemd.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"keywords": [
|
|
8
|
-
|
|
7
|
+
"keywords": [
|
|
8
|
+
"3md",
|
|
9
|
+
"web-component",
|
|
10
|
+
"custom-element",
|
|
11
|
+
"renderer",
|
|
12
|
+
"markdown",
|
|
13
|
+
"z-axis",
|
|
14
|
+
"corvidlabs"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/CorvidLabs/3md.git",
|
|
19
|
+
"directory": "element"
|
|
20
|
+
},
|
|
9
21
|
"homepage": "https://github.com/CorvidLabs/3md#readme",
|
|
10
|
-
"bugs": {
|
|
11
|
-
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/CorvidLabs/3md/issues"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
12
28
|
"main": "./dist/three-md.js",
|
|
13
29
|
"module": "./dist/three-md.js",
|
|
14
30
|
"types": "./dist/three-md.d.ts",
|
|
@@ -18,8 +34,12 @@
|
|
|
18
34
|
"import": "./dist/three-md.js"
|
|
19
35
|
}
|
|
20
36
|
},
|
|
21
|
-
"files": [
|
|
22
|
-
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"sideEffects": [
|
|
41
|
+
"./dist/three-md.js"
|
|
42
|
+
],
|
|
23
43
|
"scripts": {
|
|
24
44
|
"build:dist": "bun build ./src/three-md.ts --outfile ./dist/three-md.js --format esm --target browser --minify",
|
|
25
45
|
"build:types": "mkdir -p dist && cp ./three-md.d.ts ./dist/three-md.d.ts",
|