-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
91 lines (91 loc) · 2.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "remark-slate-transformer",
"version": "0.9.0",
"description": "remark plugin to transform remark syntax tree (mdast) to Slate document tree, and vice versa. Made for WYSIWYG markdown editor.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "vitest run",
"tsc": "tsc -p . --noEmit",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"prepublishOnly": "rimraf lib && npm run build"
},
"dependencies": {
"@types/mdast": "^4.0.3",
"mdast-util-math": "^3.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-storysource": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@storybook/source-loader": "^8.4.0",
"@storybook/test-runner": "^0.21.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/unist": "^3.0.2",
"concurrently": "^7.6.0",
"github-markdown-css": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-syntax-highlighter": "^15.5.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"rimraf": "^6.0.0",
"rollup": "^4.17.2",
"slate": "^0.112.0",
"slate-history": "^0.110.0",
"slate-react": "^0.93.0",
"storybook": "^8.4.0",
"typescript": "^5.4.5",
"unified": "^11.0.4",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"peerDependencies": {
"unified": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/remark-slate-transformer.git"
},
"keywords": [
"unist",
"remark",
"mdast",
"markdown",
"slate",
"react",
"wysiwyg",
"richtext",
"editor"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/remark-slate-transformer/issues"
},
"homepage": "https://github.com/inokawa/remark-slate-transformer#readme"
}