-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.18 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
{
"name": "@osn/rich-text-editor",
"version": "0.1.59",
"description": "OpenSquare Team React Markdown Editor",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite demo --port 3008",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format-prettier": "prettier src --write",
"tsc": "tsc",
"build": "tsup",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/opensquare-network/rich-text-editor.git"
},
"keywords": [
"react",
"component",
"markdown",
"editor",
"text-editor",
"markdown-editor"
],
"author": "OSN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/opensquare-network/rich-text-editor.git/issues"
},
"devDependencies": {
"@2nthony/prettier-config": "^1.0.2",
"@osn/eslint-config": "^1.0.1",
"@osn/previewer": "^1.3.7",
"@types/lodash": "^4.14.182",
"@types/prismjs": "^1.26.0",
"@types/quill": "^2.0.10",
"@types/range-parser": "^1.2.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/sanitize-html": "^2.6.2",
"@types/showdown": "^1.7.2",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-react": "^1.3.0",
"add": "^2.0.6",
"cross-env": "^6.0.3",
"eslint": "^8.41.0",
"framer-motion": "^6",
"merge2": "^1.2.1",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redaxios": "^0.5.1",
"showdown": "^1.8.6",
"styled-components": "^5.3.9",
"ts-node": "^8.5.4",
"tslib": "^2.4.0",
"tsup": "^8.0.1",
"typescript": "^4.2.4",
"vite": "^4.3.9"
},
"homepage": "https://github.com/opensquare-network/rich-text-editor.git#readme",
"dependencies": {
"lodash": "^4.17.21",
"marked": "^11.1.1",
"prismjs": "^1.28.0",
"quill": "^2.0.0-dev.4",
"sanitize-html": "^2.7.0"
},
"peerDependencies": {
"@osn/previewer": "^1.3.7",
"react": "^18.2.0"
},
"packageManager": "yarn@3.5.1"
}