-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
{
"name": "@ileostar/v3-directives",
"version": "1.0.6",
"packageManager": "[email protected]",
"description": "Custom Vue3 directives",
"author": "ileostar <[email protected]> (https://github.com/ileostar)",
"license": "MIT",
"homepage": "https://github.com/ileostar/v3-directives",
"bugs": {
"url": "https://github.com/ileostar/v3-directives/issues"
},
"keywords": [
"v3",
"directives",
"vue3"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch & eslint-flat-config-viewer",
"build": "tsup",
"start": "esno src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src/directive/**/*.ts",
"lint:fix": "eslint src/**/*.* --fix",
"lint:ui": "eslint --inspect-config",
"typecheck": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "bumpp --commit --push --tag && npm publish",
"up": "taze major -I"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@floating-ui/dom": "^1.6.5",
"vue": "^3.4.27",
"vue-resize": "^1.0.1",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.19.1",
"@types/node": "^22.5.0",
"bumpp": "^9.4.1",
"eslint": "9.4.0",
"eslint-plugin-format": "^0.1.1",
"eslint-ts-patch": "8.56.0-0",
"esno": "^4.7.0",
"lint-staged": "^15.2.5",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitepress": "1.3.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}