-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
{
"name": "@edsdk/n1ed-react",
"version": "1.0.17",
"description": "React integration for N1ED editor",
"repository": {
"url": "https://github.com/edsdk/n1ed-react"
},
"files": [
"lib",
"README.md",
"LICENSE.txt"
],
"main": "lib/cjs/index.js",
"module": "lib/es2015/index.js",
"scripts": {
"lint": "tslint 'src/**/*.ts?(x)'",
"clean": "rimraf lib",
"build": "npm run clean && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json",
"watch": "tsc -w -p ./tsconfig.es2015.json",
"prepare": "npm run build"
},
"keywords": [
"tinymce",
"ckeditor",
"n1ed",
"react",
"editor",
"html",
"wysiwyg",
"visual",
"page",
"builder"
],
"author": "https://n1ed.com",
"license": "LGPL v3",
"dependencies": {
"@tinymce/tinymce-react": "^3.0.0 || ^4.0.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@types/node": "^10.17.60",
"@types/prop-types": "^15.7.5",
"@types/react": "^16.14.34",
"@types/react-dom": "^16.9.17",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.3.0",
"prop-types": "^15.8.1",
"raf": "^3.4.1",
"rimraf": "^2.6.3",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.9.10"
}
}