-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "vue3-tour",
"version": "1.0.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"serve": "vite preview"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"jump.js": "^1.0.2",
"vue": "^3.4.23"
},
"devDependencies": {
"@types/jump.js": "^1.0.6",
"@types/node": "^20.12.7",
"@vitejs/plugin-vue": "^5.0.4",
"sass": "^1.75.0",
"typescript": "^5.2.2",
"vite": "^5.2.8",
"vue-tsc": "^2.0.11"
},
"files": [
"dist",
"src",
"types"
],
"main": "dist/vue3-tour.umd.cjs",
"browser": "dist/vue3-tour.umd.cjs",
"module": "dist/vue3-tour.js",
"types": "types/vue3-tour.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alexandreDavid/vue3-tour.git"
},
"keywords": [
"vue",
"tour"
],
"author": "Alexandre David",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexandreDavid/vue3-tour/issues"
},
"homepage": "https://github.com/alexandreDavid/vue3-tour#readme"
}