-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "react-subeditor",
"description": "subeditor for react",
"version": "0.6.1",
"keywords": [
"subeditor",
"wysiwyg",
"html",
"editor",
"react"
],
"author": "Ancientec Co., Ltd.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/ancientec/react-subeditor",
"scripts": {
"clean": "(rm -r ./dist || true)",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"build": "npm run clean && tsc",
"docs": "typedoc --entryPoints lib/index.tsx"
},
"dependencies": {
"subeditor": "^0.6.1"
},
"devDependencies": {
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"esbuild": "^0.14.31",
"eslint": "^8.12.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"source-map-support": "^0.5.21",
"typescript": "^4.3.5"
},
"peerdependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}