generated from litingyes/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@vueditor/tiptap-extension-handle",
"type": "module",
"version": "0.1.0-beta.1",
"private": false,
"description": "A tiptap extension to support drag handle",
"author": "litingyes <luz.liting@gmail.com> (https://litingyes.top/)",
"license": "MIT",
"homepage": "https://vueditor.litingyes.top",
"bugs": {
"url": "https://github.com/vueditor/tiptap-extension-handle/issues"
},
"keywords": [
"tiptap",
"extension",
"tiptap-extension",
"handle",
"drag"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./demo.png",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"lint": "eslint .",
"format": "eslint --fix .",
"commit": "git-cz",
"release": "bumpp && npm publish",
"prepare": "husky"
},
"peerDependencies": {
"@tiptap/core": "^2.6.6",
"@tiptap/pm": "^2.6.6"
},
"dependencies": {
"@floating-ui/dom": "^1.6.10"
},
"devDependencies": {
"@antfu/eslint-config": "^3.5.0",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/cz-commitlint": "^19.4.0",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.5",
"bumpp": "^9.2.1",
"commitizen": "^4.3.0",
"eslint": "^9.10.0",
"husky": "^9.1.5",
"inquirer": "^10.2.2",
"lint-staged": "^15.2.10",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "eslint --fix"
}
}