forked from andrerpena/react-mde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
{
"name": "fc-mde",
"version": "1.0.2",
"description": "React Markdown Editor (FC)",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "vite --config ./demo.vite.config.mjs",
"lang": "node ./tools/lang-builder.mjs",
"build": "TS_NODE_PROJECT=tsconfig.build.json vite build",
"clean": "node cleanup.mjs",
"package": "npm run build && npm pack"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kmvan/fc-mde.git"
},
"keywords": [
"react",
"component",
"markdown",
"editor",
"text-editor",
"markdown-editor"
],
"author": "Km.Van",
"homepage": "https://github.com/kmvan/fc-mde.git#readme",
"contributors": [
{
"name": "Andre Pena"
},
{
"name": "Km Van"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kmvan/fc-mde.git/issues"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.3",
"deep-sort-object": "^1.0.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"fast-glob": "^3.3.2",
"globals": "^15.14.0",
"pofile": "^1.1.4",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"showdown": "^2.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0"
},
"dependencies": {
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}