-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·92 lines (92 loc) · 2.37 KB
/
package.json
File metadata and controls
executable file
·92 lines (92 loc) · 2.37 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
85
86
87
88
89
90
91
92
{
"name": "yazman",
"version": "0.1.0",
"description": "A modular, lightweight WYSIWYG rich text editor built with vanilla JavaScript. Zero dependencies.",
"type": "module",
"main": "dist/yazman.esm.js",
"module": "dist/yazman.esm.js",
"types": "dist/yazman.d.ts",
"files": [
"dist/",
"src/js/",
"src/scss/"
],
"sideEffects": [
"*.css",
"*.scss"
],
"exports": {
".": {
"types": "./dist/yazman.d.ts",
"sass": "./src/scss/main.scss",
"style": "./dist/yazman.min.css",
"import": "./dist/yazman.esm.js",
"default": "./dist/yazman.esm.js"
},
"./package.json": "./package.json",
"./js/*": "./src/js/*",
"./scss/*": "./src/scss/*"
},
"style": "dist/yazman.min.css",
"sass": "src/scss/main.scss",
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"release": "npm run build && mkdir -p docs/assets && cp --remove-destination -r dist/. docs/assets",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"keywords": [
"wysiwyg",
"rich-text-editor",
"text-editor",
"content-editable",
"editor",
"html-editor",
"javascript-editor",
"formatting",
"modular",
"extensible",
"undo-redo",
"clipboard",
"autosave",
"toolbar",
"content-management",
"document-editor",
"web-editor"
],
"author": "edukah",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/edukah/yazman.git"
},
"bugs": {
"url": "https://github.com/edukah/yazman/issues"
},
"homepage": "https://edukah.github.io/yazman/",
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^10.0.1",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@web/test-runner": "^0.20.2",
"babel-loader": "^10.1.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.0.3",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"eslint-webpack-plugin": "^5.0.3",
"globals": "^17.4.0",
"mini-css-extract-plugin": "^2.10.1",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
}
}