-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
107 lines (107 loc) · 2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vue-shepherd",
"version": "4.1.0",
"description": "A Vue wrapper for the site tour library Shepherd.",
"author": {
"name": "Robert Wagner",
"email": "[email protected]",
"url": "https://github.com/rwwagner90"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config rollup.config.js --format iife",
"dev": "yarn serve",
"lint": "vue-cli-service lint",
"prepublish": "yarn lint && yarn build",
"serve": "vue-cli-service serve dev/serve.js",
"start": "yarn serve",
"test:e2e": "vue-cli-service test:e2e"
},
"main": "dist/vue-shepherd.esm.js",
"module": "src/entry.js",
"unpkg": "dist/vue-shepherd.min.js",
"files": [
"dist/vue-shepherd.common.js",
"dist/vue-shepherd.common.js.map",
"dist/vue-shepherd.esm.js",
"dist/vue-shepherd.esm.js.map",
"dist/vue-shepherd.min.js",
"dist/vue-shepherd.ssr.js",
"dist/index.d.ts",
"package.json",
"README.md",
"src",
"tsconfig.json"
],
"types": "./dist/index.d.ts",
"dependencies": {
"shepherd.js": "^14.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-e2e-cypress": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compat": "^3.5.12",
"@vue/compiler-sfc": "^3.5.12",
"cross-env": "^7.0.2",
"cypress": "^13.15.1",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.30.0",
"minimist": "^1.2.8",
"release-it": "^15.11.0",
"release-it-lerna-changelog": "^5.0.0",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"vue": "^3.5.12",
"vue-eslint-parser": "^9.4.3"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"keywords": [
"vue",
"site tour",
"tour",
"shepherd"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"hooks": {
"after:bump": "yarn prepublish"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"repository": "https://github.com/shipshapecode/vue-shepherd",
"sideeffects": false,
"volta": {
"node": "18.20.3",
"yarn": "1.22.19"
}
}