forked from eonova/v3-directives
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.72 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.72 KB
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
{
"name": "@eonova/v3-directives",
"version": "1.0.7",
"packageManager": "pnpm@10.8.0",
"description": "Custom Vue3 directives",
"author": "eonova <hi@eonova.top> (https://github.com/eonova)",
"license": "MIT",
"homepage": "https://github.com/eonova/v3-directives",
"bugs": {
"url": "https://github.com/eonova/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",
"lint": "oxlint src/directive/**/*.ts",
"lint:fix": "oxlint 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.13",
"vue": "^3.5.13",
"vue-resize": "^1.0.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@types/node": "^22.14.1",
"bumpp": "^10.1.0",
"esno": "^4.8.0",
"lint-staged": "^15.5.1",
"oxlint": "^0.16.5",
"simple-git-hooks": "^2.12.1",
"taze": "^19.0.4",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitepress": "1.3.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "oxlint --fix"
}
}