-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1017 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1017 Bytes
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
{
"name": "@syntaxphoenix/syp-editor",
"version": "0.0.4",
"description": "A wrapper and toolbar for tiptap within VanillaJS",
"scripts": {
"build-css": "sass scss/editor.scss dist/editor.css && sass scss/editor.scss dist/editor.min.css --style=compressed",
"build": "tsup && pnpm run build-css",
"publish": "npm run build && npm publish --access public"
},
"repository": {
"url": "https://github.com/SyntaxPhoenix/syp-editor"
},
"homepage": "https://github.com/SyntaxPhoenix/syp-editor",
"bugs": "https://github.com/SyntaxPhoenix/syp-editor/issues",
"keywords": [
"tiptap",
"wysiwyg",
"editor"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": {
"name": "SyntaxPhoenix IT-Solutions",
"url": "https://syntaxphoenix.com"
},
"license": "MIT",
"devDependencies": {
"sass": "^1.94.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@tiptap/core": "^3.13.0"
}
}