-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "vue3-hotkey",
"type": "module",
"version": "1.0.6",
"packageManager": "pnpm@9.6.0",
"description": "Hotkey Hooks for Vue3",
"author": "Talljack <yugang.cao12@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Talljack/vue3-hotKey#readme",
"repository": {
"type": "git",
"url": "https://github.com/Talljack/vue3-hotKey"
},
"keywords": [
"vue3",
"hotkey",
"hooks"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"README.md",
"dist"
],
"engines": {
"node": ">=16.x"
},
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json --declarationDir dist/types",
"test": "jest",
"prepare": "simple-git-hooks"
},
"dependencies": {
"vue": "^3.4.37",
"vue-template-compiler": "^2.7.16"
},
"devDependencies": {
"@jest/environment": "^29.7.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/vue": "^8.1.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@vue/compiler-sfc": "^3.4.37",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.8.0",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"talljack-eslint-config": "^0.2.6",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"vue-tsc": "^2.0.29"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
}
}