forked from fatihsolhan/v-onboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.17 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
{
"name": "v-onboarding",
"version": "1.1.0",
"description": "v-onboarding is a super-slim, fully-typed onboarding component for Vue 3",
"repository": {
"type": "git",
"url": "https://github.com/fatihsolhan/v-onboarding.git"
},
"author": "Fatih Solhan",
"license": "MIT",
"private": false,
"keywords": [
"onboarding",
"vue-onboarding",
"tour",
"vue-tour",
"vue-introduction",
"vue-intro",
"vue3",
"vue-3",
"vue"
],
"files": [
"dist",
"src/types/*",
"src/typings.d.ts",
"web-types"
],
"types": "src/typings.d.ts",
"main": "./dist/v-onboarding.umd.js",
"module": "./dist/v-onboarding.es.js",
"exports": {
".": {
"import": "./dist/v-onboarding.es.js",
"require": "./dist/v-onboarding.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"build": "yarn update-web-types && vite build",
"update-web-types": "vue-docgen-web-types",
"docs:dev": "cd docs && npm run dev",
"docs:generate": "cd docs && npm run generate",
"demo:dev": "vite demo",
"demo:build": "vite build demo",
"semantic-release": "semantic-release --branches main",
"commit": "git-cz",
"test": "vitest"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"vue": "^3.2.21"
},
"peerDependencies": {
"vue": "^3.2.21"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^16.11.7",
"@vitejs/plugin-vue": "^1.9.4",
"@vue/test-utils": "^2.2.10",
"cz-conventional-changelog": "3.3.0",
"happy-dom": "^8.6.0",
"lodash.merge": "^4.6.2",
"minimist": "^1.2.5",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.45.0",
"semantic-release": "^19.0.2",
"tsup": "^5.7.0",
"unbuild": "^0.5.11",
"vite": "^2.6.14",
"vitest": "^0.28.5",
"vue-docgen-web-types": "^0.1.7"
},
"web-types": "web-types/web-types.json",
"bugs": {
"url": "https://github.com/fatihsolhan/v-onboarding/issues"
},
"homepage": "https://github.com/fatihsolhan/v-onboarding#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}