@anyblock/remark-any-block 1.0.0-beta8 → 1.0.0-beta9
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 +45 -44
package/package.json
CHANGED
|
@@ -1,44 +1,45 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@anyblock/remark-any-block",
|
|
3
|
-
"version": "1.0.0-
|
|
4
|
-
"description": "You can flexibility to create a 'Block' by many means. It also provides many useful features, like `list to table`.",
|
|
5
|
-
"types": "@types/index_remark.d.ts",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "dist/remark-any-block.cjs",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"import": "./dist/remark-any-block.js",
|
|
11
|
-
"require": "./dist/remark-any-block.cjs"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"publishConfig": {
|
|
15
|
-
"access": "public"
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
19
|
-
"build": "pnpm build_vite",
|
|
20
|
-
"build_vite": "pnpm copy_abc_style && vite build",
|
|
21
|
-
"prepublishOnly": "pnpm build",
|
|
22
|
-
"copy_abc_style": "copyfiles --flat ../../src/ABConverter/style/styles.css ./"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [],
|
|
25
|
-
"author": "",
|
|
26
|
-
"license": "GNU Affero General Public License v3.0",
|
|
27
|
-
"packageManager": "pnpm@10.10.0",
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"mdast
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"@types/
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@anyblock/remark-any-block",
|
|
3
|
+
"version": "1.0.0-beta9",
|
|
4
|
+
"description": "You can flexibility to create a 'Block' by many means. It also provides many useful features, like `list to table`.",
|
|
5
|
+
"types": "@types/index_remark.d.ts",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/remark-any-block.cjs",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/remark-any-block.js",
|
|
11
|
+
"require": "./dist/remark-any-block.cjs"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
19
|
+
"build": "pnpm build_vite",
|
|
20
|
+
"build_vite": "pnpm copy_abc_style && vite build",
|
|
21
|
+
"prepublishOnly": "pnpm build",
|
|
22
|
+
"copy_abc_style": "copyfiles --flat ../../src/ABConverter/style/styles.css ./"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [],
|
|
25
|
+
"author": "",
|
|
26
|
+
"license": "GNU Affero General Public License v3.0",
|
|
27
|
+
"packageManager": "pnpm@10.10.0",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"jsdom": "^26.1.0",
|
|
30
|
+
"markdown-it": "^14.1.0",
|
|
31
|
+
"mdast": "^3.0.0",
|
|
32
|
+
"mdast-util-to-markdown": "^2.1.2",
|
|
33
|
+
"tslib": "^2.8.1",
|
|
34
|
+
"unified": "^11.0.5",
|
|
35
|
+
"unist-util-visit": "^5.0.0",
|
|
36
|
+
"vfile": "^6.0.3"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/jsdom": "^21.1.7",
|
|
40
|
+
"@types/markdown-it": "^14.1.2",
|
|
41
|
+
"copyfiles": "^2.4.1",
|
|
42
|
+
"typescript": "^5.9.3",
|
|
43
|
+
"vite": "^7.2.7"
|
|
44
|
+
}
|
|
45
|
+
}
|