-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "@akilli/editor",
"version": "5.2.7",
"description": "A HTML standards-compliant and dependency-free rich text editor",
"keywords": [
"contenteditable",
"editor",
"html-editor",
"rte",
"rich-text",
"rich-text-editor",
"wysiwyg",
"wysiwyg-editor"
],
"author": "Ayhan Akilli",
"license": "MIT",
"bugs": "https://github.com/akilli/editor/issues",
"repository": {
"type": "git",
"url": "https://github.com/akilli/editor.git"
},
"type": "module",
"browser": "./dist/editor.js",
"files": [
"dist"
],
"workspaces": [
"src"
],
"scripts": {
"start": "npx --yes servor --reload . index.html 20000",
"lint": "prettier --check '**/*.js'",
"lint:fix": "prettier --write '**/*.js'",
"build": "npm run build:clean && npm run build:font && npm run build:css && npm run build:js",
"build:clean": "rm -rf dist",
"build:font": "mkdir -p dist && cp src/build/editor.woff2 dist/editor.woff2",
"build:css": "esbuild src/build/editor.css --minify --outfile=dist/editor.css",
"build:js": "node ./build.js",
"release:patch": "./release patch",
"release:minor": "./release minor",
"release:major": "./release major"
},
"devDependencies": {
"@akilli/editor-src": "^5.2.7",
"esbuild": "^0.27.3",
"prettier": "^3.8.1"
}
}