-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 KB
/
package.json
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
{
"name": "jodit-svelte",
"version": "1.0.3",
"description": "Svelte3 component for Jodit",
"homepage": "https://github.com/jodit/jodit-svelte",
"author": "Valerii Chupurniov <chupurnov@gmail.com>",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jodit/jodit-svelte"
},
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"svelte": "src/index.js",
"types": "index.d.ts",
"scripts": {
"newversion": "rm -rf dist/ && npm run build && npm version patch --no-git-tag-version && npm run github && npm publish ./",
"github": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/jodit/jodit-svelte/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:main",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"svelte",
"svelte.js",
"svelte component",
"svelte component jodit",
"svelte3 component",
"jodit"
],
"files": [
"src",
"dist",
"README.md",
"index.d.ts",
"LICENSE.txt"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"jodit": "^3.24.5",
"prettier": "^2.8.4",
"rollup": "^3.17.2",
"rollup-plugin-svelte": "^7.1.3",
"svelte": "^3.55.1",
"svelte-preprocess": "^5.0.1"
}
}