-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
{
"name": "dialog-draggable",
"version": "0.1.5",
"description": "Makes HTML <dialog> draggable.",
"packageManager": "pnpm@8.6.12",
"type": "module",
"files": [
"dist",
"src"
],
"main": "./dist/dialog-draggable.umd.cjs",
"module": "./dist/dialog-draggable.js",
"exports": {
".": {
"import": "./dist/dialog-draggable.js",
"require": "./dist/dialog-draggable.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naeemo/dialog-draggable.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"types": "src/index.ts",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vite build"
},
"keywords": [
"dialog",
"draggable",
"html dialog element"
],
"author": "Naeemo <naeemo@qq.com>",
"homepage": "https://github.com/Naeemo/dialog-draggable",
"bugs": "https://github.com/Naeemo/dialog-draggable/issues",
"private": false,
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|md|html)": [
"eslint --fix",
"prettier --write"
]
}
}