-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "@easylogic/react-summernote-lite",
"version": "0.1.4",
"description": "React extension for summernote lite version",
"main": "./src/index.ts",
"sideEffects": false,
"scripts": {
"build:library": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easylogic/react-summernote.git"
},
"keywords": [
"react",
"summernote"
],
"author": "easylogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/easylogic/react-summernote/issues"
},
"homepage": "https://github.com/easylogic/react-summernote#readme",
"publishConfig": {
"access": "public",
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"jquery": "^3.4.1",
"summernote": "^0.8.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@easylogic/react-summernote": "workspace:*"
},
"devDependencies": {
"config": "workspace:*",
"@types/node": "^18.19.34",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"vite": "5.0.13",
"vite-plugin-dts": "^3.9.1",
"@types/jquery": "^3.3.33"
}
}