-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.42 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
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": "@codefortify/olloweditor",
"version": "0.1.1",
"description": "A modern rich text editor for JavaScript, TypeScript, React, MERN, Node, Vue, Next.js, and NestJS applications.",
"keywords": [
"rich-text-editor",
"wysiwyg",
"editor",
"javascript-editor",
"typescript-editor",
"react-editor",
"react-typescript-editor",
"mern-editor",
"node-editor",
"vue-editor",
"nextjs-editor",
"nestjs-editor",
"content-editor",
"html-editor"
],
"homepage": "https://github.com/CodeFortifyCloud/olloweditor",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeFortifyCloud/olloweditor.git"
},
"bugs": {
"url": "https://github.com/CodeFortifyCloud/olloweditor/issues"
},
"license": "MIT",
"author": "CodeFortify",
"type": "module",
"main": "./dist/olloweditor.cjs",
"module": "./dist/olloweditor.es.js",
"types": "./dist/index.d.ts",
"style": "./dist/olloweditor.css",
"unpkg": "./dist/olloweditor.browser.js",
"jsdelivr": "./dist/olloweditor.browser.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/olloweditor.es.js",
"require": "./dist/olloweditor.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/olloweditor-react.es.js",
"require": "./dist/olloweditor-react.cjs"
},
"./style.css": "./dist/olloweditor.css",
"./browser": "./dist/olloweditor.browser.js"
},
"files": [
"dist",
"README.md",
"examples"
],
"scripts": {
"dev": "vite",
"start": "vite",
"build": "node scripts/build-browser-bundle.js",
"build:browser": "node scripts/build-browser-bundle.js",
"build:python-assets": "node scripts/sync-python-assets.mjs",
"verify:python-assets": "node scripts/verify-python-assets.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "node --test tests/browser/*.test.js",
"test:browser": "node --test tests/browser/*.test.js",
"preview": "vite preview",
"prepublishOnly": "npm run build && npm run typecheck && npm test"
},
"peerDependencies": {
"react": ">=18.0.0 || >=19.0.0-0",
"react-dom": ">=18.0.0 || >=19.0.0-0"
},
"devDependencies": {
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"jsdom": "^26.1.0",
"react": "latest",
"react-dom": "latest",
"typescript": "latest",
"vite": "latest"
}
}