athif-custom-package 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "athif-custom-package",
3
+ "version": "1.0.0",
4
+ "description": "CKEditor 5 React package with math, chemistry, special characters, and question preview",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "style": "./dist/custom-ck-editor-athif-package.css",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./style.css": "./dist/custom-ck-editor-athif-package.css",
16
+ "./dist/custom-ck-editor-athif-package.css": "./dist/custom-ck-editor-athif-package.css"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "sideEffects": [
24
+ "**/*.css"
25
+ ],
26
+ "keywords": [
27
+ "ckeditor",
28
+ "ckeditor5",
29
+ "react",
30
+ "mathlive",
31
+ "chemistry",
32
+ "equation-editor",
33
+ "rich-text-editor",
34
+ "question-preview",
35
+ "special-characters"
36
+ ],
37
+ "author": "Athif",
38
+ "license": "MIT",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/athif/custom-ck-editor-athif-package.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/athif/custom-ck-editor-athif-package/issues"
45
+ },
46
+ "homepage": "https://github.com/athif/custom-ck-editor-athif-package#readme",
47
+ "scripts": {
48
+ "build": "vite build",
49
+ "dev": "vite",
50
+ "prepublishOnly": "npm run build"
51
+ },
52
+ "peerDependencies": {
53
+ "@ckeditor/ckeditor5-react": "^9 || ^10 || ^11",
54
+ "ckeditor5": "^44 || ^45 || ^46 || ^47 || ^48",
55
+ "mathlive": ">=0.100.0",
56
+ "react": "^18 || ^19",
57
+ "react-dom": "^18 || ^19"
58
+ },
59
+ "devDependencies": {
60
+ "@ckeditor/ckeditor5-react": "^11.1.2",
61
+ "@vitejs/plugin-react": "^6.0.1",
62
+ "ckeditor5": "^48.2.0",
63
+ "mathlive": "^0.109.2",
64
+ "react": "^19.1.0",
65
+ "react-dom": "^19.1.0",
66
+ "vite": "^8.0.12"
67
+ },
68
+ "publishConfig": {
69
+ "access": "public"
70
+ }
71
+ }