-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "tiptap-extension-global-drag-handle",
"description": "drag handle extension for tiptap",
"version": "0.1.16",
"author": {
"name": "Niclas Gregor",
"email": "niclas.gregor20@gmail.com",
"github": "https://github.com/NiclasDev63"
},
"license": "MIT",
"keywords": [
"tiptap",
"tiptap extension",
"drag handle"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/src/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"umd": "dist/index.umd.js",
"types": "dist/src/index.d.ts",
"type": "module",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/NiclasDev63/tiptap-extension-global-drag-handle"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c"
},
"devDependencies": {
"typescript": "^5.4.3",
"@tiptap/core": ">=2.1.0",
"@tiptap/pm": ">=2.1.0",
"rollup": "^2.67.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.2",
"ts-loader": "9.3.1",
"tsup": "^6.5.0",
"@atomico/rollup-plugin-sizes": "^1.1.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3"
}
}