-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.76 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
{
"name": "vue-use-active-scroll",
"version": "1.1.3",
"private": false,
"description": "Accurate TOC/sidebar links without compromises for Vue 3.",
"keywords": [
"vue",
"vue3",
"vue-scroll",
"vue-scroll-active",
"vue-active-scroll",
"vue-active-link",
"vue-toc"
],
"homepage": "https://vue-use-active-scroll.netlify.app/",
"bugs": {
"url": "https://github.com/smastrom/vue-use-active-scroll/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/smastrom/vue-use-active-scroll.git"
},
"license": "MIT",
"author": {
"name": "Simone Mastromattei",
"email": "smastrom@proton.me"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && vue-tsc && vite build && rm -rf dist/_redirects dist/favicon.ico",
"build:app": "vue-tsc && vite build --mode app",
"dev": "vite",
"prepare": "husky install",
"test": "cypress run --component",
"test:gui": "cypress open --component"
},
"lint-staged": {
"*.{ts,vue,md}": "prettier --write"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.5.4",
"@vitejs/plugin-vue": "^5.1.3",
"animated-scroll-to": "^2.3.0",
"cypress": "^13.14.2",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "5.4.3",
"vite-plugin-dts": "^4.2.1",
"vue": "^3.5.4",
"vue-router": "^4.4.4",
"vue-tsc": "^2.1.6"
}
}