-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1011 Bytes
/
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
{
"name": "@pangenerator/extension-small",
"description": "small extension for tiptap",
"version": "0.0.2",
"homepage": "https://github.com/panGenerator/extension-small",
"scripts": {
"build": "rollup -c",
"postversion": "git push --tags"
},
"keywords": [
"tiptap",
"tiptap extension"
],
"license": "MIT",
"main": "dist/extension-small.cjs.js",
"umd": "dist/extension-small.umd.js",
"module": "dist/extension-small.esm.js",
"types": "src/index.d.ts",
"files": [
"src",
"dist"
],
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
},
"devDependencies": {
"rollup": "^2.67.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.2"
},
"repository": {
"type": "git",
"url": "https://github.com/panGenerator/extension-small"
}
}