-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 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
40
41
42
43
44
{
"name": "create-tiptap-extension",
"description": "Create a new Tiptap extension in seconds.",
"version": "1.1.3",
"license": "MIT",
"type": "module",
"author": {
"name": "Dominik Biedebach",
"email": "[email protected]",
"url": "https://tiptap.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/ueberdosis/create-tiptap-extension.git"
},
"bugs": {
"url": "https://github.com/ueberdosis/create-tiptap-extension/issues"
},
"homepage": "https://tiptap.dev",
"bin": {
"create-tiptap-extension": "bin/index.js"
},
"files": [
"bin",
"templates/*"
],
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.14.1",
"@types/prompts": "^2.4.2",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w"
},
"dependencies": {
"chalk": "^5.2.0",
"fs-extra": "^11.1.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
}
}