-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "@intevation/tiptap-extension-office-paste",
"version": "0.0.3",
"description": "Office paste fix extension for tiptap editor",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "node --import tsx --test src/*.spec.ts"
},
"keywords": [
"tiptap"
],
"peerDependencies": {
"@tiptap/core": "^2.10.3",
"@tiptap/pm": "^2.10.3"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Intevation/tiptap-extension-office-paste.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Intevation/tiptap-extension-office-paste/issues"
},
"homepage": "https://github.com/Intevation/tiptap-extension-office-paste#readme",
"devDependencies": {
"@tiptap/core": "^2.10.3",
"@tiptap/pm": "^2.10.3",
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}